我们有像
这样的json数据Orgnaizationunit [
{"name":london , "Coordinates":[39.78,22.30]} ,
{"name" : Newyork, "Coordinates":[39.81,22.37}
]
在JavaScript中,我们可以将数组中的第一个元素称为
Organizationunit[0].name
我想知道如何调用坐标。我称之为
Organizationunit[0].Coordinates[0][1]
但我收到未定义错误
答案 0 :(得分:6)
喜欢这个
var Orgnaizationunit = [
{"name": 'london', "Coordinates":[39.78,22.30]},
{"name": 'Newyork', "Coordinates":[39.81,22.37]}
];
console.log(Orgnaizationunit[0].Coordinates[0]);
console.log(Orgnaizationunit[0].Coordinates[1]);