“Aktualizacja mongoose i zwróć nowe” Kod odpowiedzi

Aktualizacja mongoose i zwróć nowe

const query = {} //your query here
const update = {} //your update in json here
const option = {new: true} //will return updated document

const user = await User.findOneAndUpdate(query , update, option)
Graceful Gerenuk

Przykład Mongoose UpdateOne

// Update the document using `updateOne()`
await CharacterModel.updateOne({ name: 'Jon Snow' }, {
  title: 'King in the North'
});

// Load the document to see the updated value
const doc = await CharacterModel.findOne();
doc.title; // "King in the North"
Lonely Loris

Zaktualizuj dane za pomocą Mongoose

const res = await Person.updateOne({ name: 'Jean-Luc Picard' }, { ship: 'USS Enterprise' });
res.n; // Number of documents matched
res.nModified; // Number of documents modified
Quaint Quagga

Zaktualizuj Mongoose

const MyModel = mongoose.model('Test', new Schema({ name: String }));
const doc = new MyModel();

doc instanceof MyModel; // true
doc instanceof mongoose.Model; // true
doc instanceof mongoose.Document; // true
Adorable Anteater

Odpowiedzi podobne do “Aktualizacja mongoose i zwróć nowe”

Pytania podobne do “Aktualizacja mongoose i zwróć nowe”

Więcej pokrewnych odpowiedzi na “Aktualizacja mongoose i zwróć nowe” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu