Tauri 防止应用程序关闭
默认情况下,Tauri 会在最后一个窗口关闭时关闭应用程序。您可以简单地致电以防止这种情况发生。
api.prevent_close()
根据您的需要,您可以使用以下两个选项之一:
保持后端在后台运行
如果你的后端应该在后台运行,你可以这样调用:api.prevent_close()
tauri::Builder::default()
.build(tauri::generate_context!())
.expect("error while building tauri application")
.run(|_app_handle, event| match event {
tauri::RunEvent::ExitRequested { api, .. } => {
api.prevent_exit();
}
_ => {}
});
保持前端在后台运行
如果您需要保持前端在后台运行,可以这样实现:
tauri::Builder::default().on_window_event(|event| match event.event() {
tauri::WindowEvent::CloseRequested { api, .. } => {
event.window().hide().unwrap();
api.prevent_close();
}
_ => {}
})
.run(tauri::generate_context!())
.expect("error while running tauri application");