0

为我提供的一些 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"
    }
]
]

所以,我有一个名为“数据”的对象。如果我将“数据”字符串化,这就是我上面的内容。基本上我有一个 parentId,我需要在这个 JSON 中查找该 parentId。我不习惯这种结构,我正在努力寻找一个(相对)简单的解决方案。我习惯于在顶层放置“项目”之类的东西,我可以向下钻取。

4

2 回答 2

0

如果您愿意使用库,可以在Underscore中执行此操作,

这个:

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

返回数组中的对象,其中parentId等于idToLookUp

小提琴

于 2013-06-22T05:10:01.310 回答
0
for(var i=0;i<data.length;i++)
{if(data[i][0].parentId=='yourParent_id')
//stuff
}
于 2013-06-22T04:58:01.597 回答