“обновление мангуоза и вернуть новый” Ответ

обновление мангуоза и вернуть новый

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

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

Обновление данных с использованием 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

Обновить мангуст

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

Ответы похожие на “обновление мангуоза и вернуть новый”

Вопросы похожие на “обновление мангуоза и вернуть новый”

Больше похожих ответов на “обновление мангуоза и вернуть новый” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования