我正在开发一个项目,需要弄清楚网页是否在nwjs中运行,然后根据它进行一些操作。
现在页面正在远程服务器上运行,我使用window.location从我的webapp跳转到它。当跳转到外部位置时,即使在nwjs中打开网页,网页也无法获得nwjs节点环境。
我使用node-remote允许从原始webapp的package.json中的所有URL访问,它是这样的:
"single-instance": true,
"node-remote": ["*://*"],
"chromium-args": "--args --touch-events=enabled --disable-web-security --allow-file-access-from-files"
我错过了什么吗?
答案 0 :(得分:0)
特殊模式匹配以允许的方案开头的任何URL。 因此,既然您想匹配任何网站,那么最好这样做
"node-remote": ["<all_urls>"]
对于对nw.js有效的铬参数,您可以尝试Series.reset_index
网站