在MongoDB中处理子文档
要操作子文档,请在MongoDB中使用dot(。)表示法。首先让我们创建一个包含文档的集合-
> db.demo378.insertOne(
... {
... Name: 'Chris',
... details:[
... {id:101,Score:56},
... {id:102,Score:78}
... ]
... }
... );
{
"acknowledged" : true,
"insertedId" : ObjectId("5e5a758a2ae06a1609a00b0f")
}在find()方法的帮助下显示集合中的所有文档-
> db.demo378.find();
这将产生以下输出-
{
"_id" : ObjectId("5e5a758a2ae06a1609a00b0f"), "Name" : "Chris", "details" : [
{ "id" : 101, "Score" : 56 }, { "id" : 102, "Score" : 78 }
]
}以下是操作子文档的查询-
> db.demo378.update({Name: "Chris", "details.id":102 }, { $inc: { "details.$.Score": -8 } });
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })在find()方法的帮助下显示集合中的所有文档-
> db.demo378.find();
这将产生以下输出-
{
"_id" : ObjectId("5e5a758a2ae06a1609a00b0f"), "Name" : "Chris", "details" : [
{ "id" : 101, "Score" : 56 }, { "id" : 102, "Score" : 70 }
]
}