我有一个类似的JSON数据:
'1':
{ code: '1',
type: 'car',
},
'2':
{ code: '2',
type: 'bike'
},
...
我不想在父母中解析1和2。只有我需要
[{code: '1',
type: 'car',
},
{ code: '2',
type: 'bike'
},
...]
我该怎么做?
答案 0 :(得分:2)
jsonArray = [];
for (var i in JsonData) {
jsonArray.push(jsonData[i]);
}