Bạn có thể chọn giữa:
Mongoose Object-way:
document.dots[0].location.push({ /* your subdoc*/ });
document.save(callback);
Truy vấn Mongo / Mongoose (sử dụng $push
và $
nhà điều hành
):
YourModel.update(
{_id: /* doc id */, 'dots.id': /* subdoc id */ },
{$push: {'dots.$.location': { /* your subdoc */ }},
callback
);