我刚开始使用Node-Webkit,我遇到了一个问题。我已经编写了下面的代码,但没有显示任何内容,也没有创建我声明要创建的文件。我有npm安装了fs和操作系统,但仍然没有运气。我通过将项目文件夹拖动到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>
答案 0 :(得分:0)
请检查index.html中的拼写错误
内容+ ='总计(字节):'+ os.totalmen() + os.EOL; - 应该是 os.totalmem()
内容+ ='免费(字节):'+ os.freenmem() + os.EOL; - 应该是 os.freemem()
和 content + ='Type:'+ os.cpus [0] .model + os.EOL; - os.cpus()[0] .model
答案 1 :(得分:0)
替换...
os.cpus [0]。模型
使用...
os.cpus()[0].model