tauri2中创建新的窗口方式,和tauri1不一样了哦

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

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

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

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

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

javascript 复制代码
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

示例代码:

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();
}
相关推荐
楠木s13 分钟前
JNDI基础
java·开发语言·网络攻击模型·哈希算法·安全威胁分析
Cachel wood16 分钟前
Vue.js前端框架教程11:Vue监听器watch和watchEffect
前端·javascript·vue.js·git·ui·前端框架·ecmascript
Cachel wood22 分钟前
Vue.js前端框架教程14:Vue组件el-popover
前端·javascript·vue.js·python·elementui·django·前端框架
倩倩_ICE_王王30 分钟前
Spring Boot 项目创建
java·spring boot·后端
IH_LZH33 分钟前
计算机网络面经总结
java·开发语言·网络·网络协议·tcp/ip·计算机网络
夏 魂35 分钟前
前端平台搭建初体验
前端
web1508509664135 分钟前
前端TypeScript学习day01-TS介绍与TS部分常用类型
前端·学习·typescript
来都来了_36 分钟前
React 底部加载组件(基于antd)
前端·javascript·react.js
山小嗨37 分钟前
Vue3组件数据双向绑定
前端·javascript·vue.js
yzhSWJ39 分钟前
Java 后端给前端返回的long精度缺失,导致数据不一致
java·js·long