您的位置:首页 > 健康 > 养生 > 网络代理软件是什么_小程序开发一般多少钱_seo是什么意思 seo是什么职位_网络营销专业培训学校

网络代理软件是什么_小程序开发一般多少钱_seo是什么意思 seo是什么职位_网络营销专业培训学校

2024/12/22 22:58:28 来源:https://blog.csdn.net/weixin_44786530/article/details/144469468  浏览:    关键词:网络代理软件是什么_小程序开发一般多少钱_seo是什么意思 seo是什么职位_网络营销专业培训学校
网络代理软件是什么_小程序开发一般多少钱_seo是什么意思 seo是什么职位_网络营销专业培训学校

看官方javascript的api文档:window | Tauri 

tauri中的rust文档:https://docs.rs/tauri/latest/tauri/index.html

tauri.config.json定义文档:Configuration | Tauri

tauri可用插件:tauri-apps repositories · GitHub

在前端页面创建窗口示例:

import { Window } from "@tauri-apps/api/window"const appWindow = new Window('theUniqueLabel');appWindow.once('tauri://created', function () {// window successfully created
});
appWindow.once('tauri://error', function (e) {// an error happened creating the window
});// emit an event to the backend
await appWindow.emit("some-event", "data");
// listen to an event from the backend
const unlisten = await appWindow.listen("event-name", e => {});
unlisten();

在tauri后端rust创建窗口文档:WebviewWindowBuilder in tauri::webview - Rust

示例代码:

#[tauri::command]
async fn create_window(app: tauri::AppHandle) {let webview_window = tauri::WebviewWindowBuilder::new(&app, "label", tauri::WebviewUrl::App("index.html".into())).build().unwrap();
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com