现在我在gulpfile中浏览我的代码,并将其发送到适当的位置。但是,如果我想解析一个json文件并在index.html中显示它...
它会返回此错误:
Uncaught TypeError: require(...).readFileSync is not a function
这是我的gulpfile和app.js的代码http://pastebin.com/n0BJfZG9
我错过了什么吗?为什么我不能使用普通的节点模块呢?
答案 0 :(得分:4)
您应该能够直接在节点中要求您的JSON文件:
var myJson = require('./path/to/file.json');
// log to confirm output
console.log(JSON.stringify(myJson));
这假设file.json
是原始JSON,沿着以下行:
{
"property": "value",
"property2": "value2"
}