我已經在這個格式JSON:無法訪問JS財產
[
{
"_id": {
"$oid": "560c079e1691682b4ff327ad"
},
"year": "2015",
"month": "9",
"day": "30",
"time": "17:02:17",
"problemDesc": "test",
"resolution": "test",
"IM": "test"
}
]
我試圖訪問使用年份:console.log(json[0].year)
,但接收undefined
。如何從這個json字符串訪問年份值?
小提琴:
你有一個字符串,它是不是在有效的JSON字符串要麼 - 這是一個工程http://jsfiddle.net/mplungjan/pkzuf8b7/ – mplungjan
有沒有額外的字符?試圖訪問您的json對象時出現錯誤 – nykc