66

这是我的带有 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?

4

3 回答 3

85

http 以字符串的形式发送/接收数据……这就是事情的本来面目。您正在寻找将字符串解析为 json。

var jsonObject = JSON.parse(data);

如何使用 Node.js 解析 JSON?

于 2013-07-23T13:43:12.633 回答
73

只需告诉请求您正在使用 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);
});

和 post 一样

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);
});
于 2015-11-11T03:35:47.007 回答
21

只需将json选项设置为true,正文将包含已解析的 JSON:

request({
  url: 'http://...',
  json: true
}, function(error, response, body) {
  console.log(body);
});
于 2017-09-18T19:37:04.227 回答