Ajax調用後,我試圖提取數據的屬性 - 第一個元素的消息內容:檢索屬性從JSON響應
success : function(data) {
console.log(data[0].message);
console.log(data);
console.log(data.message); .....}
undefined
[{"message":"Must not "},{"message":"hello"}]
undefined
下面的教程http://www.copterlabs.com/blog/json-what-it-is-how-it-works-how-to-use-it/我很困惑的是什麼,我做錯了。雖然最後data.message
顯然是無效的,但我發現data[0].message
沒有錯......
什麼是'typeof(data)'? – lastr2d2
@WayneWang你碰到了......該死的。這是文字。如果我的返回類型不同,我期待錯誤。 – Aubergine