所以如果我有以下 json
{
"data": {
"sectionList": {
"section124": [{
"a": "test",
"b": "test",
"c": "test",
"d": "test",
"e": "test2013-04-14"
}, {
"a": "test",
"b": "test",
"c": "test",
"d": "test",
"e": "test2013-04-14"
}
]
},
"section00824": [
[{
"a": "test",
"b": "test",
"c": "test",
"d": "test",
"e": "test2013-04-14"
}, {
"a": "test",
"b": "test",
"c": "test",
"d": "test",
"e": "test2013-04-14"
}
]
]
}
}
我在我的代码中做了一个 ajax 得到它并有一个返回结果的回调我需要知道第一部分被称为什么
我知道我可以这样做:
return result.data.sectionList.section124;
但问题是我不知道那个名字是什么,因为它每次都会改变
我试过了
return result.data.sectionList.*;
return result.data.sectionList[0];
但他们不允许
有任何想法吗?
谢谢