我有一個多維數組,但ID在父母和孩子中是唯一的,所以我通過使用for循環來循環使用問題。問題是我似乎無法抓住孩子的ID。你認爲我應該如何處理?通過具有所有唯一ID的多維數組遍歷多個數組
var Options = [
{
id: 0,
children: []
},
{
id: 2,
children: []
},
{
id: 3,
children: [
{
id: 4,
children: []
},
{
id: 5,
children: []
},
{
id: 6,
children: []
}
]
},
{
id: 7,
children: [
{
id: 8,
children: []
},
{
id: 9,
children: []
}
]
}
];
我一直代碼簡潔爲簡潔起見。我想要做的是遍歷數組來比較ID的。
只是純粹的JavaScript?沒有圖書館? – qooplmao
你是什麼意思你有問題循環?你需要解釋你的問題是什麼。 – epascarello