0
如何在JSON
之後迭代JavaScript
從PHP
返回AJAX響應。在javascript中遍歷一個複雜的json數組
[{ "Topic": { "id": "1", "topic_name": "Playground" } }, { "Topic": { "id": "2", "topic_name": "School Days" } }, { "Topic": { "id": "3", "topic_name": "Sweet home" } }]
我試圖像但不工作
for (i in xmlhttp.responseText)
{
document.getElementById('wrap_main').innerHTML+=xmlhttp.responseText[i]['topic'].name + "<br />";
}
是 'xmlhttp.responseText' 返回正確的JSON字符串? – Robyflc
是的,我打印在JavaScript中的字符串,你可以看到問題的結果。 – mansoor