在Json中调用数组

时间:2015-11-28 11:23:08

标签: javascript json

我们有像

这样的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] 

但我收到未定义错误

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]);