我试图通过对管道使用update来更新MongoDB(4.2)中的数据。困难在于我想根据另一个字段将一个字段添加到数组元素。我也想对每个元素执行此操作。我知道我可以通过Javascript实现每种功能,但我想知道是否有更好的方法。这就是我想做的例子
之前:
{
"_id" : ObjectId("555555555"),
"messages" : [
{
"author" : {
"userId" : "12345",
"name" : "John"
},
"text" : "Any text",
},
{
"author" : {
"userId" : "56789",
"name" : "Jim"
},
"text" : "also text"
}
]
}
之后
{
"_id" : ObjectId("555555555"),
"messages" : [
{
"author" : {
"userId" : "12345",
"name" : "John",
"newId" : "00012345"
},
"text" : "Any text",
},
{
"author" : {
"userId" : "56789",
"name" : "Jim",
"newId" : "00056789"
},
"text" : "also text"
}
]
}
我尝试过的事情:
db.mail.update(
{"_id" : ObjectId("555555555")},
[{ $set: { "messages.$[].author.newId": { $concat: [ "000", "$messages.$[].author.userId"]}}}],
{ multi: true, writeConcern: {w: 0} }
)
有人知道如何解决这个问题吗? 谢谢
答案 0 :(得分:2)
这将执行所需的更新。
db.test.update(
{ _id : ObjectId("555555555") },
[
{
$set: {
messages: {
$map: {
input: "$messages",
in: {
$mergeObjects: [
"$$this",
{ "author": {
$mergeObjects: [
"$$this.author",
{ newId: { $concat: [ "000", "$$this.author.userId"] } }
]
} }
]
}
}
}
}
}
],
{ multi: true, writeConcern: {w: 0} }
)
请注意,不使用聚合时,用于数组更新的所有位置运算符$[]
将与更新操作一起使用。当一个字段值依赖于文档中的另一个字段时,您必须使用聚合来更新。