如何将协议添加到网址,例如' // abc.com'在电子?

时间:2017-08-07 08:27:43

标签: protocols electron

现在有了像' // abc.com'这样的网址,电子会自动重定向到' file://abc.com'。有没有办法将https协议头添加到该网址而不是file

1 个答案:

答案 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)
});