J'ai un tableau JSON très simple (veuillez vous concentrer sur l'objet "points.bean.pointsBase" ):
var mydata =
{"list":
[
{"points.bean.pointsBase":
[
{"time": 2000, "caption":"caption text", duration: 5000},
{"time": 6000, "caption":"caption text", duration: 3000}
]
}
]
};
// Usually we make smth like this to get the value:
var smth = mydata.list[0].points.bean.pointsBase[0].time;
alert(smth); // should display 2000
Mais, malheureusement, il n'affiche rien.
Quand je change "points.bean.pointsBase" en smth sans points dans son nom - tout fonctionne!
Cependant, je ne peux pas changer ce nom en autre chose sans points, mais j'ai besoin d'une valeur?!
Y a-t-il des options pour l'obtenir?
la source