我正在向使用request
包返回员工数据的API发出HTTP GET请求。 API会返回first_name
,last_name
等信息。
我的问题是如何从请求中访问这些属性?现在我有以下代码:
request("http://localhost:3000/api/employee", function(err, res, body) {
console.log(body);
});
这会将主体打印为字符串,而不是对象,因此我无法执行以下操作:
console.log(body.first_name) //returns 'undefined'
答案 0 :(得分:4)
您必须使用JSON.parse
解析该字符串才能成为js对象:
apiResponse = JSON.parse(body)
console.log(apiResponse.first_name)
答案 1 :(得分:1)
请尝试以下代码段。
var request = require("request");
request({
uri: "http://localhost:3000/api/employee",
method: "GET"
}, function(error, response, body) {
console.log( JSON.parse(body) );
});