Node.js 节点Webkit Iframe不显示Internet浏览器

Node.js 节点Webkit Iframe不显示Internet浏览器,node.js,iframe,node-webkit,Node.js,Iframe,Node Webkit,可能我安装了一些错误的东西,但无论我怎么做,我都无法在iframe中显示浏览器窗口。我将找到的示例中粘贴的代码复制到主页中: <!doctype html> <html> <head> <meta charset="utf-8"> <title>Test</title> </head> <body> <b>You should be able to se

可能我安装了一些错误的东西,但无论我怎么做,我都无法在iframe中显示浏览器窗口。我将找到的示例中粘贴的代码复制到主页中:

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Test</title>
  </head>
  <body>
    <b>You should be able to see Google in an iframe below:</b>
    <iframe src="https://www.google.com" style="width: 80%;" nwdisable nwfaketop>
    </iframe>
  </body>
</html>
当我使用C:\node webkit\nw.exe运行代码时。从命令行中,我知道您应该能够在下面的iframe中看到Google:下面有一个空框

还有,我在Windows上。如果我能得到任何帮助,我将不胜感激


编辑:我能够运行所有示例应用程序。问题是我试图在HTTP窗口中加载HTTPS站点

{
  "name": "test",
  "main": "main.html",
  "window": {
    "width": 600,
    "height": 400,
    "position": "center",
    "title": "Test",
    "resizable": true
  }
}