在MongoDB中更新特定数组索引处的对象?
要更新特定数组索引处的对象,请update()在MongoDB中使用。首先让我们创建一个包含文档的集合-
> db.updateObjectDemo.insertOne(
... {
... id : 101,
... "StudentDetails":
... [
... [
... {
... "StudentName": "John"
... },
... { "StudentName": "Chris" }
... ],
... [ { "StudentName": "Carol" },
... { "StudentName": "David" } ]
... ]
... }
... );
{
"acknowledged" : true,
"insertedId" : ObjectId("5ccdcd9b685b30d09a7111e0")
}以下是在find()方法的帮助下显示集合中所有文档的查询-
> db.updateObjectDemo.find().pretty();
这将产生以下输出-
{
"_id" : ObjectId("5ccdcd9b685b30d09a7111e0"),
"id" : 101,
"StudentDetails" : [
[
{
"StudentName" : "John"
},
{
"StudentName" : "Chris"
}
],
[
{
"StudentName" : "Carol"
},
{
"StudentName" : "David"
}
]
]
}以下是查询以更新MongoDB中特定数组索引处的对象-
> db.updateObjectDemo.update({"id":101},{$set:{"StudentDetails.1.1.StudentName":"Mike"}});
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })让我们检查特定索引[1,1]处的对象。值“David”是否已更新-
> db.updateObjectDemo.find().pretty();
这将产生以下输出-
{
"_id" : ObjectId("5ccdcd9b685b30d09a7111e0"),
"id" : 101,
"StudentDetails" : [
[
{
"StudentName" : "John"
},
{
"StudentName" : "Chris"
}
],
[
{
"StudentName" : "Carol"
},
{
"StudentName" : "Mike"
}
]
]
}