我的收藏如下:
{
"_id" : "",
"team" : "avenger",
"persons" : [
{
"name" : "ABC",
"class" : "10",
"is_new" : true
},
{
"name" : "JHK",
"class" : "12",
"is_new" : true
},
{
"name" : "BNH",
"class" : "10",
"is_new" : true
}
]
},
{
"_id" : "",
"team" : "adrenaline",
"persons" : [
{
"name" : "HTU",
"class" : "11",
"is_new" : true
},
{
"name" : "NVG",
"class" : "10",
"is_new" : true
},
{
"name" : "SED",
"class" : "8",
"is_new" : true
}
]
}
我的目标是在“人员”(其中“类别”为“ 10”)中查找包含此类嵌套对象的所有此类文档,并将“ is_new”字段更新为“ false”
我正在使用“ multi”设置为true的猫鼬更新
查询:
{
persons: { $elemMatch: { class: "10" } }
}
选项:
{
multi : true
}
更新:
我尝试过的第一个是:
{
$set : {
"persons.$.is_new" : false
}
}
第二个是:
{
$set : {
"persons.$[].is_new" : false
}
}
问题是:在更新操作中使用 $只会更新“人员”数组中的第一个匹配项。
如果我使用 $ [],它将更新匹配文档中“人员”数组的所有对象。
解决方法可以是使用循环进行更新操作,但我认为这不是理想的情况。
尽管发现有人报告此更新操作问题,但我在文档中什么都没看到。
这是使用单个查询无法完成的吗? 循环浏览文档是我唯一的选择吗?
答案 0 :(得分:2)
您需要设置过滤后的位置运算符$[<identifier>]
标识符
Model.update(
{ "persons": { "$elemMatch": { "class": "10" }}},
{ "$set" : { "persons.$[e].is_new" : false }},
{ "arrayFilters": [{ "e.class": "10" }], "multi" : true }
)