节点WebKit:没有任何显示



我刚从Node-webkit开始,我有问题。我已经在下面编码了我的代码,但是没有显示任何内容,也没有创建我声明要创建的文件。我已经安装了NPM和OS,但仍然没有运气。我通过将项目文件夹拖动到NW可执行文件

来打开它。

package.json:

{
    "name": "test-app",
    "main": "index.html",
    "version": "0.1.0",
    "window": {
        "icon": "icon.png",
        "width": "1300",
        "max_width": "2000",
        "min_width": "500",
        "height": "700",
        "max_height": "1500",
        "min_height": "200",
        "position" : "center"
    },
    "bugs": "http://example.com/bugs"
}

index.html:

<!DOCTYPE html>
<html>
  <head>
    <title>Test</title>
    <link href="https://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet" type="text/css">
    <script>
        // System Information 
        var os = require('os');
        // File Operations 
        var fs = require('fs');
        // Content
        var content = '';
        // Platform Information 
        content += '[Platform]: ' + os.EOL;
        content += '[OS Type]: ' + os.platform() + os.EOL; // Linux, Darwin Win32, FreeBSD, or SunOs
        content += '[OS Version] ' + os.release() + os.EOL;
        content += '[OS Architecture] ' + os.arch() + os.EOL;
        content += os.EOL;
        // Memory Information
        content += '[Memory]' + os.EOL;
        content += 'Total (Bytes): ' + os.totalmen() + os.EOL;
        content += 'Free (Bytes): ' + os.freenmem() + os.EOL;
        content += 'Free (%): ' + (os.freemem() / os.totalmem() * 100).toFixed(2) + os.EOL;
        content += os.EOL;
        // CPU Information 
        content += '[CPU]: ' + os.EOL;
        content += 'Cores: ' + os.cpus().length + os.EOL;
        content += 'Type: ' + os.cpus[0].model + os.EOL;
        fs.writeFile('./sysinfo.txt', content, function (err) {
          if (err) {
            alert('Error writing file');
          }
          else document.write("Successfully wrote to file.");
        });
    </script>
  </head>
  <body>
  </body>
</html>

请检查index.html中的错别字错误

content ='total(bytes):' os.totalmen() os.eol; - 应该是 OS.TotalMem()

content ='free(bytes):' os.freenmem() os.eol; - 应该是 OS.FREEMEM()

和content ='type:' os.cpus [0] .model os.eol; - os.cpus()[0] .model

替换...

os.cpus [0] .model

与...

os.cpus()[0].model

相关内容