gpt4 book ai didi

Electron 如何允许不安全的https

转载 作者:行者123 更新时间:2023-12-02 11:25:47 29 4
gpt4 key购买 nike

加载中 https://github.com例如,工作正常。
但是加载了一个不安全的 https,页面显示为空 .

我做了一些研究并尝试了下面的 3 个标志( webSecurityallowDisplayingInsecureContentallowRunningInsecureContent )但没有成功。

寻找任何已知的解决方案。谢谢你。

const { BrowserWindow } = require('electron').remote;

let win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
plugins: true,
nodeIntegration: false,
webSecurity: false,
allowDisplayingInsecureContent: true,
allowRunningInsecureContent: true
}
});

win.loadURL('https://insecure...')

最佳答案

你只需要在main.js中声明electron.app后调用方法appendSwitch:

const app = electron.app;
app.commandLine.appendSwitch('ignore-certificate-errors', 'true');

关于 Electron 如何允许不安全的https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44658269/

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