我想分析一个我用 Watson 的音调分析器动态创建的 JSON 文件。我希望它读取文件,然后分析它。
如何让tone_analyzer.tone 方法读取文件?谢谢你。
app.get('/results', function(req, res) {
// This is the json file I want to analyze
fs.readFile('./output.json', null, cb);
function cb() {
tone_analyzer.tone({
// How can I pass the file here?
text: ''
},
function(err, tone) {
if (err)
console.log(err);
else
console.log(JSON.stringify(tone, null, 2));
});
console.log('Finished reading file.')
}
res.render('results');
})