101

我正在尝试更新 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 中完成这种更新的明确解释。

4

9 回答 9

84

正如预期的那样,一旦您知道如何查询,查询就很容易了。这是python中的语法:

db["my_collection"].update(
    { "_id": ObjectId(document_id) },
    { "$set": { 'documents.'+str(doc_index)+'.content' : new_content_B}}
)
于 2012-07-07T14:29:00.327 回答
61

Mongo Shell 中由索引(例如 1 )引用的数组元素的更新也可以通过直接指示索引值来完成:

db.my_collection.update(
    {_id : "document_id"},
    {$set : {"my_array.1.content" : "New content B"}}
)
于 2015-12-09T11:40:15.460 回答
60

在 mongo 风格中,使用 '$' 位置运算符。查看此链接了解详情。

db.my_collection.update(
  {_id: ObjectId(document_id), my_array.1 : 1 },
  { $set: { "my_array.$.content" : "NEW content B" } }
)
于 2015-05-05T17:03:38.157 回答
24

当需要更新数组元素而不知道它的实际索引但具有元素的唯一标识符时:

// 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"是数组元素的唯一标识符。

于 2020-05-20T17:20:33.347 回答
9
db.my_collection.update(
  {_id: ObjectId(document_id), my_array : { ... old content A ... } },
  { $set: { "my_array.$.content" : "NEW content B" } }
)
于 2017-07-21T10:48:28.843 回答
8

在 Javascript 中使用反引号的一种简洁方法是:

 const index = 1;

 ...  {   $set: { [`myArray.${index}.value`]: "new content"}  },  ...
于 2020-03-15T20:27:47.793 回答
6

当需要更新数组元素而不知道它是实际索引但具有元素的唯一标识符时

db.getCollection('profiles').update(
  {
    'userId':'4360a380-1540-45d9-b902-200f2d346263',
    'skills.name':'css'
  },
  {
      $set: {'skills.$.proficiencyLevel': 5}
  }, 
  {
      multi: true
  }
)
于 2020-06-16T17:14:32.387 回答
3

您可以使用 mongoDB 的 updateOne 函数传递数组中元素的索引,如果旧内容 B的键是每个示例的“值”:

[
...
"value" : "old content A"
"value" : "old content B"
"value" : "old content C"
...
]

命令应该是这样的:

db.collection.updateOne({"_id" : "...,"},{$set: {"my_array.1.value": "NEW content B"}})
于 2019-05-03T14:33:22.550 回答
3

如果您想从以下文档更新具有 _id = 60c4918d74c30165ba585c14 的推荐的作者姓名:

"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/

于 2021-06-12T11:19:25.367 回答