這是我的MongoDB表設計mongodb過濾器在多級別的子文件?
"_id" : ObjectId("5368e65ae6aa265432000002"),
"accounts" : {},
"contacts" : {
"1" : {
"accounts" : {
"user1" : "data",
"user3" : "data"
}
},
"2" : {
"accounts" : {
"user2" : "data",
"user5" : "data",
}
},
"3" : {
"accounts" : {
"user4" : "data"
"user7" : "data",
}
}
},
我的問題是如何檢查用戶已經有任何帳戶的對象,或者不相關的。
例如我有像user1,user2的數據。我想檢查密鑰是否已經添加或不...
不要把你的動態數據(如ID)的關鍵名稱。正如你所看到的,它給你無盡的麻煩。 – JohnnyHK