API_URL显示如下内容:
{
"posts": [{
"id": "987f2bhfzu3r3f43fg",
"uuid": "g3g4g-4g34gd7f-40ae-96g43g82-65g34g43ccec94a566",
"title": "This is my title",
"tag": "thistag"
}]
}
const request = require('request');
request('API_URL', { json: true }, (err, res, body) => {
if (err) { return console.log(err); }
console.log(body.posts);
});
还给我
[{
"id": "987f2bhfzu3r3f43fg",
"uuid": "g3g4g-4g34gd7f-40ae-96g43g82-65g34g43ccec94a566",
"title": "This is my title",
"tag": "thistag"
}]
如果我在代码中尝试
console.log(body.posts.title);
,它将返回谁可以获得标题的键值?
最佳答案
注意方括号([]
)-您得到了一个带有单个元素的数组。您首先需要为该元素添加下标,然后才可以访问该字段:
console.log(body.posts[0].title)
// Here --------------^