我試圖訪問存儲在數組中的每個對象的文本屬性。該數組是另一個屬性,結果,在一個對象內的值。如何訪問javascript中其他對象內的對象內的屬性
我使用jQuery從服務器檢索對象,就像這樣。
$.ajax({
url: "https://api.parse.com/1/classes/chats",
cache: false,
type: 'get',
async: false,
success: function(data){
console.log(data);
}
});
在最後的日誌語句是看看我收到。自然,這是我需要做的事情,但我似乎無法破解代碼。所以,我有一個結果屬性和數組值的對象。該數組是一個對象數組,每個對象都有自己的屬性。我只是有點困惑如何得到我需要的東西。也許輕輕推動正確的方向?
Object {results: Array[10]} //object returned
results: Array[10] //value is an array of objects
0: Object // object '0' expanded...
createdAt: "2013-10-15T19:13:43.576Z"<br><br>
objectId: "uzGerloXA7"
text: "RoboChat: I'm sorry Dave, I can't allow you to do that." // I need this!
updatedAt: "2013-10-15T19:13:43.576Z"
username: "RoboChat"
1:Object // and I need it for each of these objects.
2:Object
3:Object
etc...
9:Object //this is the last object.
我d建議使用像Firebug這樣的工具,它可以讓你設置斷點和檢查對象。這對學習和調試非常有用 – geedubb