按变量索引更新 MongoDB 文档中的数组?
要按变量索引更新 MongoDB 文档中的数组,请使用以下语法。此处,yourIndexValue 为索引值,其中 yourIndexVariableName 是索引的变量名 −
var yourIndexVariableName= yourIndexValue, anyVariableName= { "$set": {} }; yourVariableName["$set"]["yourFieldName."+yourIndexVariableName] = "yourValue"; db.yourCollectionName.update({ "_id": yourObjectId}, yourVariableName);
我们首先创建一个包含文档的集合 −
> db.updateByVariableDemo.insertOne({"StudentSubjects":["MySQL","Java","SQL Server","PL/SQL"]}); { "acknowledged" : true, "insertedId" : ObjectId("5cd553c37924bb85b3f4893a") }
以下是使用 find() 方法从集合中显示所有文档的查询 −
> db.updateByVariableDemo.find().pretty();
这将产生以下输出 −
{ "_id" : ObjectId("5cd553c37924bb85b3f4893a"), "StudentSubjects" : [ "MySQL", "Java", "SQL Server", "PL/SQL" ] }
以下是按变量索引更新 MongoDB 文档中数组的查询 −
> var indexValue = 1, ... valueToUpdate= { "$set": {} }; > valueToUpdate["$set"]["StudentSubjects."+indexValue] = "MongoDB"; MongoDB > db.updateByVariableDemo.update({ "_id": ObjectId("5cd553c37924bb85b3f4893a") }, valueToUpdate) WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
让我们再次显示文档 −
> db.updateByVariableDemo.find().pretty();
这将产生以下输出 −
{ "_id" : ObjectId("5cd553c37924bb85b3f4893a"), "StudentSubjects" : [ "MySQL", "MongoDB", "SQL Server", "PL/SQL" ] }
广告