现在有了像' // abc.com'这样的网址,电子会自动重定向到' file://abc.com'。有没有办法将https
协议头添加到该网址而不是file
?
答案 0 :(得分:0)
const shell = require('electron').shell;
webContents.on('new-window', function(event, url){
event.preventDefault();
if (url.startsWith('//')) {
url = 'https:' + url;
}
shell.openExternal(url)
});