假设我有一个显示此JSON对象的URL。
如何获取Albertson
?
{
"ancestor" : [
{
"father" : [
{
"long_name" : "Albertson",
"short_name" : "Roger",
"types" : [ "surname" ]
}
]
}
],
}
是ancestor[0][0].long_name
吗?
答案 0 :(得分:1)
您可以使用
获取数据object.ancestor[0].father[0].long_name
您还可以参考:http://www.json.com/#object-with-nested-array-and-object