无法让工具栏显示在 Node Webkit 中
Cant get Toolbar to show up in Node Webkit
我的问题应该很简单。根据我查看的文档和教程,一个基本的 nw.js 应用程序应该在顶部有一个工具栏 as such。但是,当我 运行 我的 'Hello World' 程序没有这样的工具栏时,它看起来像这样:
我还尝试在 package.json 中显式打开工具栏(虽然听起来应该默认启用),如下所示:
{
"main": "index.html",
"name": "example",
"window": {
"toolbar": true,
"width": 800
}
}
但我仍然找不到工具栏。我错过了什么?
我的 nw.js 版本是 0.13.0(windows 64 位)
此选项在 0.13 中是 "deprecated":
toolbar is deprecated and it’s always false. The traditional
toolbar will NOT be supported including the reload buttons, location
bar and DevTools buttons. As a workaround, you can open / close
DevTools with F12 (Windows & Linux) or ⌘+⌥+i (Mac). And use
win.reload() and win.reloadDev() to simulate the reload buttons.
参见:http://docs.nwjs.io/en/v0.13.0-rc2/For%20Users/Migration/From%200.12%20to%200.13/
尽管使用的语言是 'deprecated',但显然完全不支持该选项。参见:https://github.com/nwjs/nw.js/issues/4274
我的问题应该很简单。根据我查看的文档和教程,一个基本的 nw.js 应用程序应该在顶部有一个工具栏 as such。但是,当我 运行 我的 'Hello World' 程序没有这样的工具栏时,它看起来像这样:
我还尝试在 package.json 中显式打开工具栏(虽然听起来应该默认启用),如下所示:
{
"main": "index.html",
"name": "example",
"window": {
"toolbar": true,
"width": 800
}
}
但我仍然找不到工具栏。我错过了什么?
我的 nw.js 版本是 0.13.0(windows 64 位)
此选项在 0.13 中是 "deprecated":
toolbar is deprecated and it’s always false. The traditional toolbar will NOT be supported including the reload buttons, location bar and DevTools buttons. As a workaround, you can open / close DevTools with F12 (Windows & Linux) or ⌘+⌥+i (Mac). And use win.reload() and win.reloadDev() to simulate the reload buttons.
参见:http://docs.nwjs.io/en/v0.13.0-rc2/For%20Users/Migration/From%200.12%20to%200.13/
尽管使用的语言是 'deprecated',但显然完全不支持该选项。参见:https://github.com/nwjs/nw.js/issues/4274