为我提供的一些 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。我不习惯这种结构,我正在努力寻找一个(相对)简单的解决方案。我习惯于在顶层放置“项目”之类的东西,我可以向下钻取。