我有一個json數組。我需要把這個:如何將JSON數組轉換爲JSON對象?
[
{"id": ["1"],
"title": ["hello"],
"start": ["2016-05-20"],
"end": ["2016-05-25"],
}
]
這樣:
[
{"id": "1",
"title: "hello",
"start": "2016-05-20",
"end": "2016-05-25",
}
]
如何做到這一點?
複製? http://stackoverflow.com/questions/7634518/getting-jsonobject-from-jsonarray –