通过NodeJS中的Http请求获取json

这是我的模型与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得到它。 为什么我收到(数据)一个string,而不是一个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?

http发送/接收数据作为string…这是事情的方式。 你正在寻找parsingstring为json。

 var jsonObject = JSON.parse(data); 

如何使用Node.jsparsingJSON?

只要告诉请求,你正在使用json:true,并忘记标题和parsing

 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); }); 

只要将json选项设置为true ,主体将包含parsing的json:

 request({ url: 'http://...', json: true }, function(error, response, body) { console.log(body); });