Tauri 通知
2024-02-02 16:34 更新
向用户发送 Toast 通知(简短的自动过期 OS 窗口元素)。 也可以与通知 Web API 一起使用。
当 build.withGlobalTauri
in 设置为 时,也可以访问此包。window.__TAURI__.notification
tauri.conf.json
true
必须将 API 添加到 tauri.allowlist.notification
中:tauri.conf.json
{
"tauri": {
"allowlist": {
"notification": {
"all": true // enable all notification APIs
}
}
}
}
建议仅将您使用的 API 列入许可列表,以获得最佳捆绑包大小和安全性。
以上内容是否对您有帮助:
更多建议: