这是我的模型,带有json响应:
exports.getUser = function(req, res, callback) {
User.find(req.body, function (err, data) {
if (err) {
res.json(err.errors);
} else {
res.json(data);
}
});
};
我在这里通过http.request获取它。为什么我收到(数据)字符串而不是json?
var options = {
hostname: '127.0.0.1'
,port: app.get('port')
,path: '/users'
,method: 'GET'
,headers: { 'Content-Type': 'application/json' }
};
var req = http.request(options, function(res) {
res.setEncoding('utf8');
res.on('data', function (data) {
console.log(data); // I can't parse it because, it's a string. why?
});
});
reqA.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
reqA.end();
我如何获得json?
答案 0 :(得分:68)
http以字符串形式发送/接收数据......这就是事情的方式。您正在寻找将字符串解析为json。
var jsonObject = JSON.parse(data);
答案 1 :(得分:56)
告诉请求您正在使用json:true并忘记标题和解析
var options = {
hostname: '127.0.0.1',
port: app.get('port'),
path: '/users',
method: 'GET',
json:true
}
request(options, function(error, response, body){
if(error) console.log(error);
else console.log(body);
});
和帖子相同
var options = {
hostname: '127.0.0.1',
port: app.get('port'),
path: '/users',
method: 'POST',
json: {"name":"John", "lastname":"Doe"}
}
request(options, function(error, response, body){
if(error) console.log(error);
else console.log(body);
});
答案 2 :(得分:9)
只需将json
选项设置为true
,正文将包含已解析的json:
request({
url: 'http://...',
json: true
}, function(error, response, body) {
console.log(body);
});