Tauri 防止应用程序关闭

2024-01-29 16:19 更新
默认情况下,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");


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号