访问节点请求

时间:2015-12-27 23:54:26

标签: javascript node.js request

我正在向使用request包返回员工数据的API发出HTTP GET请求。 API会返回first_namelast_name等信息。

我的问题是如何从请求中访问这些属性?现在我有以下代码:

request("http://localhost:3000/api/employee", function(err, res, body) {
    console.log(body);
});

这会将主体打印为字符串,而不是对象,因此我无法执行以下操作:

console.log(body.first_name) //returns 'undefined'

2 个答案:

答案 0 :(得分:4)

您必须使用JSON.parse解析该字符串才能成为js对象:

apiResponse = JSON.parse(body)
console.log(apiResponse.first_name)

MDN reference

答案 1 :(得分:1)

请尝试以下代码段。

var request = require("request");

request({
  uri: "http://localhost:3000/api/employee",
  method: "GET"
}, function(error, response, body) {
  console.log( JSON.parse(body) );
});