選擇,我有以下JSON對象:JSON從陣列
[{"_id":"57b1f03ec4f37923cc436100","pokedex_id":134,"location":{"type":"Point","coordinates":[-117.4955084,34.0175467]}},
{"_id":"57b1f03fc4f37923cc436101","pokedex_id":134,"location":{"type":"Point","coordinates":[-117.4955084,34.0175467]}}]
我試圖用console.log(temp[0]);
訪問數據,但由於某些原因,我的輸出就是[
。我究竟做錯了什麼?此外,任何後續索引似乎都會返回相應的char值。例如:temp[1]
返回{
,temp[3]
返回_
。
什麼是'temp'?你能粘貼整個代碼嗎? – martriay
我認爲Temp是JSON對象名稱。 – Developer