आप इनमें से चुन सकते हैं:
नेवला ऑब्जेक्ट-वे:
document.dots[0].location.push({ /* your subdoc*/ });
document.save(callback);
Mongo/Mongoose Query ($push
का उपयोग करके
और $
ऑपरेटर
):
YourModel.update(
{_id: /* doc id */, 'dots.id': /* subdoc id */ },
{$push: {'dots.$.location': { /* your subdoc */ }},
callback
);