如何仅更新MongoDB中的一个属性?

要仅更新一个属性,请在MongoDB中使用$addToSet。让我们创建一个包含文档的集合-

> db.demo336.insertOne({"Name":"Chris","Score":[45,67,78]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e522cb1f8647eb59e562097")
}
> db.demo336.insertOne({"Name":"David","Score":[89,93,47]});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5e522cb2f8647eb59e562098")
}

find()方法的帮助下显示集合中的所有文档-

> db.demo336.find();

这将产生以下输出-

{ "_id" : ObjectId("5e522cb1f8647eb59e562097"), "Name" : "Chris", "Score" : [ 45, 67, 78 ] }
{ "_id" : ObjectId("5e522cb2f8647eb59e562098"), "Name" : "David", "Score" : [ 89, 93, 47 ] }

以下是仅更新MongoDB中的一个属性的查询-

> db.demo336.update({Name:"David"},{ $addToSet: {Score: [56,34,71] }});
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

find()方法的帮助下显示集合中的所有文档-

> db.demo336.find();

这将产生以下输出-

{ "_id" : ObjectId("5e522cb1f8647eb59e562097"), "Name" : "Chris", "Score" : [ 45, 67, 78 ] }
{ "_id" : ObjectId("5e522cb2f8647eb59e562098"), "Name" : "David", "Score" : [ 89, 93, 47, [ 56, 34, 71 ] ] }