多级json与身体反应在nodjs

时间:2016-10-18 15:43:15

标签: json node.js

我使用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'获取数据键?

1 个答案:

答案 0 :(得分:0)

此代码应该适用于您的JSON描述

var jsonObj = JSON.parse(body);
for(index in jsonObj) {
    console.log(jsonObj[index].test.name);