我想访问 json 数组中的最里面的值。我使用 ajax 调用获得的这个 json 数据。
以下是我从服务器获取的 json 数据:
{
"meta": {
"limit": 20,
"next": null,
"offset": 0,
"previous": null,
"total_count": 7
},
"objects": [
{
"id": 2,
"other": "{}",
"name": "gmail"
},
{
"id": 3,
"other": "{'userinfo': [{ 'user1': { 'user_name':'nancy','address': [], 'outfields': ['login', 'url','type','id']}},{ 'createissue': { 'type':'post','infields': ['owner','repo','title','body'], 'outfields': []}}",
"name": "yahoo"
}
]
}
现在在这里我想要使用 jquery 的 user_name 的值。如何得到它?请有人帮助我。
我试过这样:-
user=rows.objects[i].other.userinfo[0];
但它不起作用