gpt4 book ai didi

electron - 最佳实践: Detecting electron shell

转载 作者:行者123 更新时间:2023-12-03 12:22:02 27 4
gpt4 key购买 nike

我正在 Electron 应用程序中加载远程站点。当我在 Electron shell 中时,我想添加一些自定义CSS。我注意到我package.json中的名称出现在UserAgent中。我知道我可以执行以下操作:

if(navigator.userAgent.indexOf('MyApp') >= 0) document.body.classList.add('electronified');

我想知道这是否是最好的方法?或者,如果我应该从主要过程中进行操作。你有什么想法

最佳答案

我认为您应该尝试查看process.versions.electron

if (process && process.versions && process.versions.electron) {
document.body.classList.add('electronified');
}

这是假定您当然不在 <webview>内运行您的应用程序。

关于electron - 最佳实践: Detecting electron shell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33422680/

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