[{
"_id" : ObjectId("579de5ad16944ccc24d5f4f1"),
"dots" :
[
{
"id" : 1,
"location" :
[
{
"lx" : 10,
"ly" : 10
}
]
},
{
"id" : 2,
"location" : [{}]
}
]
}]
上面是模型的json格式(来自mongobooter)让我们说"行",我有_id和dots.id,我想将新对象添加到位置。那怎么能这样做(使用猫鼬)?
答案 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
);