我正在尝试更新mongodb文档中数组中包含的单个子元素。我想使用其数组索引引用该字段(数组中的元素没有任何我可以保证将是唯一标识符的字段)。看起来这应该很容易,但我无法弄清楚语法。
这就是我想在伪json中做的事情。
在:
{
_id : ...,
other_stuff ... ,
my_array : [
{ ... old content A ... },
{ ... old content B ... },
{ ... old content C ... }
]
}
后:
{
_id : ...,
other_stuff ... ,
my_array : [
{ ... old content A ... },
{ ... NEW content B ... },
{ ... old content C ... }
]
}
似乎查询应该是这样的:
//pseudocode
db.my_collection.update(
{_id: ObjectId(document_id), my_array.1 : 1 },
{my_array.$.content: NEW content B }
)
但这不起作用。我花了太长时间搜索mongodb文档,并尝试使用此语法的不同变体(例如使用$slice
等)。我找不到任何关于如何在MongoDB中完成此类更新的明确解释。
答案 0 :(得分:62)
正如预期的那样,一旦您知道如何查询就很容易。这是python中的语法:
db["my_collection"].update(
{ "_id": ObjectId(document_id) },
{ "$set": { 'documents.'+str(doc_index)+'.content' : new_content_B}}
)
答案 1 :(得分:30)
Mongo Shell中索引(例如1)引用的数组元素的更新也可以通过直接指示索引值来完成:
db.my_collection.update(
{_id : "document_id"},
{$set : {"my_array.1.content" : "New content B"}}
)
答案 2 :(得分:18)
以mongo风格,使用' $'位置操作员。 有关详细信息,请查看此link。
db.my_collection.update(
{_id: ObjectId(document_id), my_array.1 : 1 },
{ $set: { "my_array.$.content" : "NEW content B" } }
)
答案 3 :(得分:5)
db.my_collection.update(
{_id: ObjectId(document_id), my_array : { ... old content A ... } },
{ $set: { "my_array.$.content" : "NEW content B" } }
)
答案 4 :(得分:5)
需要在不知道其实际索引但又具有该元素的唯一标识符的情况下更新数组元素的情况:
// Modify a comment in a bucket
db.POST_COMMENT.update(
{
"_id": ObjectId("5ec424a1ed1af85a50855964"),
"bucket.commentId": "5eaf258bb80a1f03cd97a3ad_lepf4f"
},
{
$set: {
"bucket.$.text": "Comment text changed",
"bucket.$.createdDate": ISODate("2015-12-11T14:12:00.000+0000")
}
}
)
此处"bucket.commentId"
是数组元素的唯一标识符。
答案 5 :(得分:3)
在Javascript中使用反引号的一种巧妙方法是:
const index = 1;
... { $set: { [`myArray.${index}.value`]: "new content"} }, ...
答案 6 :(得分:1)
需要更新数组元素而不知道它是一个实际索引但具有该元素的唯一标识符
db.getCollection('profiles').update(
{
'userId':'4360a380-1540-45d9-b902-200f2d346263',
'skills.name':'css'
},
{
$set: {'skills.$.proficiencyLevel': 5}
},
{
multi: true
}
)
答案 7 :(得分:0)
如果每个示例中旧内容B 的键为“值”,则可以使用mongoDB的updateOne函数传递数组中元素的索引:
[
...
"value" : "old content A"
"value" : "old content B"
"value" : "old content C"
...
]
命令应如下所示:
db.collection.updateOne({"_id" : "...,"},{$set: {"my_array.1.value": "NEW content B"}})
答案 8 :(得分:0)
如果您想更新以下文档中 _id = 60c4918d74c30165ba585c14 的推荐书的 authorName:
"business": {
"ownerId": "60a5ebad7432d91b853c0277",
"testimonials": [
{
"_id": "60c4912877dd5664f2201b08",
"authorName": "user1",
"authorBio": "User from 10 years",
"image": "user1/img1",
"review": "asdfiuahsdfpoiuashdpfoaspdlfkjn;alsfpuoh"
},
{
"_id": "60c4918d74c30165ba585c14",
"authorName": "user2",
"authorBio": "User from 3 years",
"image": "user/img1",
"review": "asdpfuahsfljnsadfoihsf."
}
],
"createdAt": "2021-06-11T20:12:56.666Z",
"updatedAt": "2021-06-12T11:11:56.696Z",
}
然后下面的猫鼬查询有效:
await BusinessModel.updateOne(
{
'_id': Mongoose.Types.ObjectId(businessId),
'testimonials._id': Mongoose.Types.ObjectId('60c4918d74c30165ba585c14')
},
{
$set: { 'testimonials.$.authorName' : 'new author name' }
}
);
另请参阅https://docs.mongodb.com/drivers/node/fundamentals/crud/write-operations/embedded-arrays/