我知道,這件事在這裏被問及十億次。但我無法讀取該內JSON對象:json列表 - javascript - 如何解析
{"issuccess": "yes", "downloads":
"[{\"pk\": 39, \"model\": \"home.accessinfo\", \"fields\": {\"title\": \"weblink test bezugsquelle\", \"accesstype\": \"Kostenpflichtiger Download\", \"weblink\": \"google.de\", \"content\": \"weblink test bezugsquelle\", \"person\": 20, \"date\": \"2014-09-22T13:56:38.647Z\"}},
{\"pk\": 43, \"model\": \"home.accessinfo\", \"fields\": {\"title\": \"wefwef\", \"accesstype\": \"Kostenfreier Download\", \"weblink\": \"google.de\", \"content\": \"\", \"person\": 20, \"date\": \"2014-09-26T17:27:29.336Z\"}}]"
}
我不能進去[]
的東西。我試過data.downloads[0].fields
我得到undefined
。我想要能夠循環使用[]
。
你不能從那裏讀取任何對象,它不是有效的JSON。 – Quentin 2014-09-27 10:11:26
你試過數據['downloads'] [0] ['fields']? – iCezz 2014-09-27 10:12:04
修復JSON中的所有錯誤。像http://jsonlint.com/可能會有所幫助。 – Quentin 2014-09-27 10:12:23