這是我的對象。在bun
數組中,我有2個對象。我只需要訪問"oid": 1
和"bid": 1
對象的詳細信息。沒有必要訪問第二個對象。如何獲取對象數組中的匹配對象?
{
"oid": "1",
"oname": "Fon",
"bun": [{
"bid": "1",
"bname": "Ets",
"dep": [{
"did": "1",
"dname": "Dptment",
"pids": [{
"pid": "1",
"st": "active"
}, {
"pid": "2",
"st": "active"
}]
}]
}, {
"bid": "2",
"bname": "US",
"description": "unit2",
"dep": []
}]
}
怎麼可能?
它會更容易,如果你認爲這是在構建你的對象 – Sherlock
後你tryed什麼,或者你如何創建對象。 – Sarath