Puisque j'ai déjà commencé à m'y intéresser :
var data = [{
"id": "1",
"msg": "hi",
"tid": "2013-05-05 23:35",
"fromWho": "hello1@email.se"
}, {
"id": "2",
"msg": "there",
"tid": "2013-05-05 23:45",
"fromWho": "hello2@email.se"
}]
Et cette fonction
var iterateData =function(data){ for (var key in data) {
if (data.hasOwnProperty(key)) {
console.log(data[key].id);
}
}};
Vous pouvez l'appeler comme ceci
iterateData(data); // write 1 and 2 to the console
Mise à jour après le commentaire d'Eric
Comme eric a souligné a for in
boucle pour un tableau peut avoir des résultats inattendus . La question référencée comporte une longue discussion sur les avantages et les inconvénients.
Test avec for(var i ...
Mais il semble que la suite soit tout à fait sûre :
for(var i = 0; i < array.length; i += 1)
Bien qu'un test en chrome ait donné le résultat suivant
var ar = [];
ar[0] = "a";
ar[1] = "b";
ar[4] = "c";
function forInArray(ar){
for(var i = 0; i < ar.length; i += 1)
console.log(ar[i]);
}
// calling the function
// returns a,b, undefined, undefined, c, undefined
forInArray(ar);
Test avec .forEach()
Au moins dans chrome 30, cela fonctionne comme prévu
var logAr = function(element, index, array) {
console.log("a[" + index + "] = " + element);
}
ar.forEach(logAr); // returns a[0] = a, a[1] = b, a[4] = c
Liens