我使用NodeJS向REST服务器发出请求并在我的“正文”中获取此类型的JSON
[{
"id": 802,
"created": "2016-10-18 15:22:08",
"test": {
"name": "Fred "
}
}]
使用JSON.parse记录我的身体,这对于JSON的'root'工作正常,但我没有在'test'数组中获得'name'
var jsonObj = JSON.parse(body);
for(index in jsonObj) {
console.log(jsonObj[index].bag);
如何进行循环以及是否有'test'获取数据键?
答案 0 :(得分:0)
此代码应该适用于您的JSON描述
var jsonObj = JSON.parse(body);
for(index in jsonObj) {
console.log(jsonObj[index].test.name);