有没有办法在默认的OS浏览器中打开URL?
我有MenuItem
并且想要在用户点击此项时打开某个网址:
var item = new gui.MenuItem({
label: 'Shortcut',
click: function(){
//here i want OS to open some URL
}
});
答案 0 :(得分:2)
您可以这样继续:
gui.Shell.openExternal("http://website.com")
请参阅此处的文档:https://github.com/rogerwang/node-webkit/wiki/Shell
有关更多信息,另请参阅How to open a browser window from a node-webkit app?。