我有數組對象,我想刪除一些內部對象如果密鑰不匹配。如何篩選對象通過檢查關鍵
輸入:
"configuration" : {
"11111-2222-3333-444--5555" : {
"home1" :
{
"tel" : "125",
"address" : true,
}
},
"2222-3333-44444-5555--66666" : {
"home2" :
{
"tel" : "125",
"address" : true,
}
}
}
我有一個匹配的字符串11111-2222-3333-444--5555
預期了:
"configuration" : {
"11111-2222-3333-444--5555" : {
"home1" :
{
"tel" : "125",
"address" : true
}
}
}
它不是對象的數組。它只是一個有多個鍵的對象。 –
你試過了什麼? –
可能的重複 - https://stackoverflow.com/questions/38750705/using-es6-to-filter-object-properties – Rastalamm