配置环境
- 安装环境 for mac
npm install -g nw
关于开发者工具
- 新版本 toolbar:true 没有用了
On Mac, it’s nwjs.app/Contents/MacOS/nwjs.
- 需要下载sdk版本
- 用代码打开
var win = gui.Window.get();
win.showDevTools();
关于在require js文件中,调用evalNWBin后,not found module
- require js文件中,调用evalNWBin后,无法使用
- require js文件中,conselo.log 无输出的问题
this.win.evalNWBin(null, "./controller/test.bin")
- 在package.json中,添加
"chromium-args": "--mixed-context",
- 开启上下文混合模式,就可以了