更新 MongoDB 文档数组中的对象(嵌套更新)?


要更新文档数组中的对象,你需要使用 update() 方法。为了理解 update() 方法,让我们创建一个包含文档的集合。创建包含文档的集合的查询如下

> db.updateObjects.insertOne({"CustomerId":1,"CustomerName":"Larry","TotalItems":100,
... "ItemDetails":[
... {
... "NameOfItem":"Item_1",
... "Amount":450
... },
... {
... "NameOfItem":"Item_2",
... "Amount":500
... },
... {
... "NameOfItem":"Item_3",
... "Amount":200
... }
... ]
... }
... );

以下是输出

{
   "acknowledged" : true,
   "insertedId" : ObjectId("5c6d688b0c3d5054b766a769")
}

现在,你可以借助 find() 方法显示集合中的文档。查询如下

> db.updateObjects.find().pretty();

以下是显示上述创建的集合中的文档的输出

{
   "_id" : ObjectId("5c6d688b0c3d5054b766a769"),
   "CustomerId" : 1,
   "CustomerName" : "Larry",
   "TotalItems" : 100,
   "ItemDetails" : [
      {
         "NameOfItem" : "Item_1",
         "Amount" : 450
      },
      {
         "NameOfItem" : "Item_2",
         "Amount" : 500
      },
      {
         "NameOfItem" : "Item_3",
         "Amount" : 200
      }
   ]
}

将“金额”:200 增加 130。查询如下。这里,我们使用了 $inc 运算符来增加字段的值

> db.updateObjects.update({"CustomerId":1,"ItemDetails.NameOfItem":"Item_3"},
{$inc:{"ItemDetails.$.Amount":130}},
... false,true);
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

我们已成功更新增加的值。让我们显示集合中的文档。查询如下

> db.updateObjects.find().pretty();

以下是输出

{
   "_id" : ObjectId("5c6d688b0c3d5054b766a769"),
   "CustomerId" : 1,
   "CustomerName" : "Larry",
   "TotalItems" : 100,
   "ItemDetails" : [
      {
         "NameOfItem" : "Item_1",
         "Amount" : 450
      },
      {
         "NameOfItem" : "Item_2",
         "Amount" : 500
      },
      {
         "NameOfItem" : "Item_3",
         "Amount" : 330
      }
   ]
}

请看示例输出,金额 200 增加 130,现在为 330。

更新时间: 2019-07-30

650 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告