私はこのJsonを持っています:
{
"version": "firstVersion",
"numberID": "3",
"totalIDs": [
{
"1": {
"subTot": "2",
"subTotID": {
"1": "aaa",
"2": "bbb"
}
},
"2": {
"subTot": "2",
"subTotID": {
"1": "www",
"2": "rrr"
}
}
}
]
}
バージョン、numberID の値を取得する方法は知っていますが、ドリルダウンして totalIDs > 1 > subTot > value を取得しようとすると、その方法がわかりません。
ここで ajax 呼び出し:
$.ajax({
url: url,
type: "GET",
dataType: 'json',
success: function (data) {
console.log(data.version);
console.log(data.numberID);
console.log(data.totalIDs); // problem is here, I don't know how to drill down further
}
});
どんな助けでも本当に感謝しています。前もって感謝します。ジョン