使用https启动Electron

时间:2019-09-23 15:47:27

标签: electron.net

当我使用“电子启动”时,我正在从Electron得到安全警告。除非在Startup中添加NodeIntegration = false,否则这将阻止我的应用运行:

            // Open the Electron-Window here
            Task.Run(async () => await Task.FromResult(Electron.WindowManager.CreateWindowAsync(
                new BrowserWindowOptions()
                {
                    Width = 1000,
                    Height = 800,
                    // removing this line enables IPC and also causes electron security errors in dev
                    WebPreferences = new WebPreferences() { NodeIntegration = false }
                })));

我希望不必这样做。如果“电子化开始”使用https而不是http加载了javascript资源,这听起来似乎没有此警告。在Electron.NET中可以做到这一点吗?

0 个答案:

没有答案