nwjs有没有API用来打开新的nw实例窗口

发布于 2022-09-01 05:47:57 字数 712 浏览 21 评论 0

现在有一个nw窗口a,需要使用API打开另外一个nw窗口b,且窗口b内可以调用nodejs及对窗口的操作的API。

package.json

{
  "name": "node-webkit menu demo",
  "main": "index.html",
  "version": 1.1,

  "window": {
    "show": false,
    "position": "center",
    "single-instance": false,
    "width": 500,
    "toolbar":true,
    "frame":true,
    "node-remote":"<local>",
    "height": 500
  }
}

打开子窗口

 function openChildWindow() {
    var url = "http://localhost:3900/file/1";

    var docWindowOptions = {
      "new-instance": true,
      "show_in_taskbar":true,
      //"toolbar":false,
      "show": true
    };
    require('nw.gui').Window.open(url,docWindowOptions)
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凤舞天涯 2022-09-08 05:47:57

参考文档: https://github.com/nwjs/nw.js/wiki/Window#openurl-options

open(url[, options])

Open a new window and load url in it, you can specify extra options with the window. All window subfields in Manifest format can be used. Since v0.4.0, a boolean field new-instance can be used to start a new Node instance (webkit process). Since v0.9.0 and 0.8.5, inject-js-start and inject-js-end field can be used to inject a javascript file, see Manifest format .

Since v0.7.3 the opened window is not focused by default. It's a result of unifying behavior across platforms. If you want it to be focused by default, you can set focus to true in options.

var win = gui.Window.open('https://github.com', {
  position: 'center',
  width: 901,
  height: 127
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文