MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Mongoose non crea documenti secondari dall'array JSON

Guarda la prima domanda nelle FAQ di mangusta: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();

MODIFICA

Penso che questo funzionerebbe per aggiornare tutte le righe. Sarei interessato a sapere se funziona.

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
});