我將如何讀取java腳本中的以下json響應?我將如何閱讀web服務的followong json響應?
這是一個由JavaScript處理的Web服務響應,但我無法讓它如何讀取每個提交標題和開始日期。 任何幫助欣賞能力。
([
{
"submission": {
"title": "Attended band concert",
"full": "met with homeroom teacher after concert, very nice, Joker Jr. is doing well",
"start_date": "2013-06-18",
"end_date": null
}
},
{
"submission": {
"title": "she's complaining about",
"full": "something",
"start_date": "2013-06-20",
"end_date": null
}
}
]);
這不是JSON。它有'('和')'。 – Quentin