在 MongoDB 中处理子文档


要处理子文档,在 MongoDB 中使用点 (.) 记法。我们先使用文档创建一个集合 -

> 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 }
   ] 
}

更新时间:2020 年 4 月 2 日

149 次浏览

开始你的 事业

通过完成课程获得认证

开始
广告
© . All rights reserved.