gpt4 book ai didi

electron - 单击应用程序 exe 文件后如何显示接受条款和条件窗口

转载 作者:行者123 更新时间:2023-12-03 12:24:10 26 4
gpt4 key购买 nike

我正在使用 Electron Builder 为我的应用创建构建。我想要一个接受条款和条件窗口将显示复选框,如果用户选择复选框并单击继续,只有应用程序将被安装,否则退出安装。我如何在 electornjs 中执行此操作。

最佳答案

如文档所述:

license String - The path to EULA license file. Defaults to license.txt or eula.txt (or uppercase variants). In addition to txt,rtfandhtmlsupported (don't forget to usetarget=”_blank”` for links).

https://www.electron.build/configuration/nsis

所以在你的 package.json 构建部分,尝试像这样使用它:

{
"appId": "yourappid",
"productName": "your-product",
"copyright": "Copyright © 2020 your company",
"directories": {
"app": "www"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE.txt", // <- Put your license name here.
},
"win": {
"target": [
{
"target": "nsis"
}
]
}
}

并将 LICENSE.txt 文件与您的 package.json 文件放在一起:

LICENSE

Here is my example license.

构建后:

enter image description here

关于electron - 单击应用程序 exe 文件后如何显示接受条款和条件窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59550222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com