Tauri 剪贴板
2024-01-31 16:18 更新
读取和写入系统剪贴板。
当 build.withGlobalTauri
设置为 in
时,也可以访问此包。window.__TAURI__.clipboard
tauri.conf.json
true
这些 API 必须添加到 tauri.allowlist.clipboard
中:tauri.conf.json
{
"tauri": {
"allowlist": {
"clipboard": {
"all": true, // enable all Clipboard APIs
"writeText": true,
"readText": true
}
}
}
}
建议仅将您使用的 API 列入许可列表,以获得最佳捆绑包大小和安全性。
以上内容是否对您有帮助:
更多建议: