将新对象插入mongoose的子文档数组字段中

时间:2016-08-03 19:01:17

标签: node.js mongodb mongoose database

[{
    "_id" : ObjectId("579de5ad16944ccc24d5f4f1"),
    "dots" : 
    [
        {
            "id" : 1,
            "location" : 
            [
                 {
                    "lx" : 10,
                    "ly" : 10
                 }
            ]
        },
        {
            "id" : 2,
            "location" : [{}]
        }
    ]
}]

上面是模型的json格式(来自mongobooter)让我们说"行",我有_id和dots.id,我想将新对象添加到位置。那怎么能这样做(使用猫鼬)?

1 个答案:

答案 0 :(得分:14)

您可以选择:

Mongose Object-way:

document.dots[0].location.push({ /* your subdoc*/ });
document.save(callback);

Mongo / Mongoose查询(使用$push$ operator):

YourModel.update(
  {_id: /* doc id */, 'dots.id': /* subdoc id */ },
  {$push: {'dots.$.location': { /* your subdoc */ }},
  callback
);