我想知道browser-window的当前URL。有什么方法可以访问BrowserWindow的window.location.href属性或通过其他任何方式获取它?
答案 0 :(得分:1)
在主要过程中,使用窗口的webContents。getURL()方法:
[...]
win = new BrowserWindow({ /* options */});
win.loadFile('index.html');
console.log (win.webContents.getURL();)