3
我無法訪問DATA數組內的數字,這將是COLUMNS中提到的ID。從JSON數組中挑選第一個元素,jquery沒有標識符
我的JSON如下:
{
"COLUMNS": [
"ID",
"DESCRIPTION",
"DATE"
],
"DATA": [
[
53,
"Try to do something test123",
"September, 05 2017 00:00:00 +0100"
]
]
}
我現在的嘗試是這樣,但是,我得到了整個3元
var jsonLength= JSON.DATA.length;
for (dataIndex = 0; dataIndex < jsonLength; dataIndex++) {
var dataLength= JSON.DATA[dataIndex].length;
for (noteIndex = 0; noteIndex < dataLength; noteIndex++) {
alert(JSON.DATA[dataIndex]);
}
}
你試過像這樣'DATA [0] [0]' – guradio
現在我要感謝Rory McCrossan的回答。 –