Xem câu hỏi đầu tiên trong Câu hỏi thường gặp về mongoose: http://mongoosejs.com/docs/faq.html
// query the document you want to update
// set the individual indexes you want to update
// save the document
doc.array.set(3, 'changed');
doc.save();
CHỈNH SỬA
Tôi nghĩ rằng điều này sẽ hoạt động để cập nhật tất cả các hàng. Tôi muốn biết nếu nó hoạt động.
let rowQueries = [];
theData.rows.forEach(row => {
let query = Model.findOneAndUpdate({
issueId: theData.issueId,
'row._id': row._id
}, {
$set: {
'row.$': row
}
});
rowQueries.push(query.exec());
});
Promise.all(rowQueries).then(updatedDocs => {
// updated
});