mongoDB子文档列表更新语句:
db.user.update({"_id" : ObjectId("55ebe8309ff9d8916fbc9fd8")},
{
$addToSet:{
"userAuth":{
$each:[
{
"account" : "124585855645",
"accountType" : 10222
}
]
}
}
})
本文介绍了一种在mongoDB中更新子文档列表的方法,通过使用update方法结合$addToSet操作符及$each来批量添加元素到指定字段。
2847

被折叠的 条评论
为什么被折叠?



