我是新手。node.js
这里我在 node.js 中编写了一个示例函数来打印json
文件的内容,如下所示。
exports.getData =function(callback) {
readJSONFile("Conf.json", function (err, json) {
if(err) { throw err; }
console.log(json);
});
console.log("Server running on the port 9090");
我在这里做的是我只想读取一个json
文件并在控制台中打印内容。但我不知道如何调用该getData
函数。运行此代码时,它仅打印sever running on the port..", not my
json` 内容。
我知道上面的代码不正确
如何调用函数node.js
并打印json
内容?