如何在 MongoDB 中更新子对象?


要更新子对象,请使用 $set 运算符。让我们先使用文档创建一个集合 -

>db.updateChildObjectsDemo.insertOne({"StudentName":"Chris","StudentOtherDetails":{"StudentSubject":"MongoDB","StudentCountryName":"AUS"}});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5ce964e078f00858fb12e91f")
}

以下是对文档中所有文档的查询,由 find() 方法实现 -

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

以下输出应得到展现 -

{
   "_id" : ObjectId("5ce964e078f00858fb12e91f"),
   "StudentName" : "Chris",
   "StudentOtherDetails" : {
      "StudentSubject" : "MongoDB",
      "StudentCountryName" : "AUS"
   }
}

以下是对 MongoDB 中子对象更新的查询 -

> db.updateChildObjectsDemo.update({"StudentName" : "Chris"},{$set:{"StudentOtherDetails.StudentCountryName":"UK"}});
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

让我们再次查看文档 -

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

以下输出应得到展现 -

{
   "_id" : ObjectId("5ce964e078f00858fb12e91f"),
   "StudentName" : "Chris",
   "StudentOtherDetails" : {
      "StudentSubject" : "MongoDB",
      "StudentCountryName" : "UK"
   }
}

更新于: 2019 年 7 月 30 日

749 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告