0

目前我对我现在正在做的node.js项目有问题,但我不知道如何将我从以下代码中获得的json.stringify响应存储在我可以访问json数据的文件中或者是有一种更好的方法可以做到这一点,而无需将其存储在文件中。

这是我的代码:

var watson = require('watson-developer-cloud');

var personality_insights = watson.personality_insights({
    username: '...',
    password: '...',
    version: 'v2'
});

personality_insights.profile({
    text: 'I write this to explain why I’ll be holding back my album, 1989, from the new streaming service, Apple Music. I feel this deserves an explanation because Apple has been and will continue to be one of my best partners in selling music and creating ways for me to connect with my fans. I respect the company and the truly ingenious minds that have created a legacy based on innovation and pushing the right boundaries.I’m sure you are aware that Apple Music will be offering a free 3 month trial to anyone who signs up for the service. I’m not sure you know that Apple Music will not be paying writers, producers, or artists for those three months. I find it to be shocking, disappointing, and completely unlike this historically progressive and generous company.This is not about me. Thankfully I am on my fifth album and can support myself, my band, crew, and entire management team by playing live shows. This is about the new artist or band that has just released their first single and will not be paid for its success.',
    language: 'en' 
}, function (err, response) {
        if (err) {
            console.log('error:', err);
        } else {
            console.log( JSON.stringify(response, null, 2) );
        }
    });
});

我在我的代码中使用上面的 watson developer cloud。

4

1 回答 1

1

像这样的东西?

var watson = require('watson-developer-cloud');
var fs = require('fs');

var personality_insights = watson.personality_insights({
    username: '...',
    password: '...',
    version: 'v2'
});

personality_insights.profile({
    text: 'blah blah blah',
    language: 'en' 
}, function (err, response) {
        if (err) {
            console.log('error:', err);
        } else {
            fs.writeFile(
                './file.json', 
                JSON.stringify(response, null, 2), 
                function(err){
                    throw err;
                }
            );
        }
    });
});
于 2015-07-30T13:51:01.837 回答