嵌套在数组JSON中的数组 - 如何访问属性

时间:2013-06-22 04:54:14

标签: javascript arrays json nested

我已经提供了一些JSON。它采用以下格式:

[
[
    {
        "items": [
            {
                "id": "xxxxxxx",
                "name": "xxxxxxxxxx",
                "description": "xxxxxxxxxxx"
            },
            {
                "id": "xxxxxxx",
                "name": "xxxxxxxxxx",
                "description": "xxxxxxxxxxx"
            }
        ],
        "parentId": "xxxxxxxx",
        "title": "xxxxxxxxx",
        "type": "xxxxxxx"
    }
],
[
    {
        "items": [
            {
                "id": "xxxxxxx",
                "name": "xxxxxxxxxx",
                "description": "xxxxxxxxxxx"
            },
            {
                "id": "xxxxxxx",
                "name": "xxxxxxxxxx",
                "description": "xxxxxxxxxxx"
            }
        ],
        "parentId": "xxxxxxxx",
        "title": "xxxxxxxxx",
        "type": "xxxxxxx"
    }
]
]

所以,我有一个名为'data'的对象。如果我将'数据'字符串化,这就是我上面的内容。基本上我有一个parentId,我需要在这个JSON中查找parentId。我不习惯这种结构,我正在努力寻找(相对)简单的解决方案。我习惯于在顶层找到类似“物品”的东西,我可以深入了解它。

2 个答案:

答案 0 :(得分:0)

for(var i=0;i<data.length;i++)
{if(data[i][0].parentId=='yourParent_id')
//stuff
}

答案 1 :(得分:0)

如果您愿意使用图书馆,可以在Underscore

中执行此操作

这:

_(data).findWhere({parentId: idToLookUp});

返回parentId等于idToLookUp

的数组中的对象

Fiddle