-1
我想追加了「旅遊」數據到一個DIV和「自行車」到另一個數據DIV
我也想要得到一個單一的點擊事件兩種數據結構如何循環訪問這個JSON文件並獲取數據?
[
{
"city1" : {
//this is the first data that should be appended to one div
"tourism" : [{
"objectId":"1a1",
"objectTitle":"title_text",
"objectUrl_image":"http://",
"object_textContent":"text_content"
},
{
"objectId":"1a2",
"objectTitle":"title_text",
"objectUrl_image":"http://",
"object_textContent":"text_content"
}],
//this is another data that should be appended to another div
"bikes" : [{
"objectId":"1b1",
"objectTitle":"title_text",
"objectUrl_image":"http://",
"object_textContent":"text_content"
},
{
"objectId":"1b2",
"objectTitle":"title_text",
"objectUrl_image":"http://",
"object_textContent":"text_content"
}]
}
}
]
迭代過'數據[0] .city1.tourism'和'數據[0]。在javascript中使用'for'或'forEach'循環的city1.bikes'數組 –