如何从电子BrowserWindow对象获取当前URL?

时间:2019-05-06 08:56:20

标签: javascript electron

我想知道browser-window的当前URL。有什么方法可以访问BrowserWindow的window.location.href属性或通过其他任何方式获取它?

1 个答案:

答案 0 :(得分:1)

在主要过程中,使用窗口的webContents。getURL()方法:

[...]
win = new BrowserWindow({ /* options */});
win.loadFile('index.html');
console.log (win.webContents.getURL();)

请参阅:How to get the url of the BrowserWindow?