从数组中的数组中获取JSON数据

时间:2014-08-07 09:35:10

标签: json

假设我有一个显示此JSON对象的URL。

如何获取Albertson

{
  "ancestor" : [
    {
      "father" : [
         {
           "long_name" : "Albertson",
           "short_name" : "Roger",
           "types" : [ "surname" ]
         }
       ]
     }
  ],
}

ancestor[0][0].long_name吗?

1 个答案:

答案 0 :(得分:1)

您可以使用

获取数据
object.ancestor[0].father[0].long_name

您还可以参考:http://www.json.com/#object-with-nested-array-and-object