“Mongoose UpdateOne Пример” Ответ

Монгуз найти и обновить опору

var query = {'username': req.user.username};
req.newData.username = req.user.username;

MyModel.findOneAndUpdate(query, req.newData, {upsert: true}, function(err, doc) {
    if (err) return res.send(500, {error: err});
    return res.send('Succesfully saved.');
});
florinrelea

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

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

const userObjectId = mongoose.Types.ObjectId(userIdString);

await UserModel.updateOne({ _id: userObjectId }, { $set: { isVerifiedEmail: true } }).catch(
  error => {
     console.log(error);
   }
);
console.log('user updated');
Grumpy Goat

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

Обновление запроса в монгузе

var conditions = { name: 'bourne' } 
  , update = { $inc: { visits: 1 }}

Model.update(conditions, update, { multi: true }).then(updatedRows=>{
  
}).catch(err=>{
  console.log(err)
  
})
Adventurous Aardvark

Найти и обновить монгуз

// Using queries with promise chaining
Model.findOne({ name: 'Mr. Anderson' }).
  then(doc => Model.updateOne({ _id: doc._id }, { name: 'Neo' })).
  then(() => Model.findOne({ name: 'Neo' })).
  then(doc => console.log(doc.name)); // 'Neo'

// Using queries with async/await
const doc = await Model.findOne({ name: 'Neo' });
console.log(doc.name); // 'Neo'
Lucky Lapwing

Ответы похожие на “Mongoose UpdateOne Пример”

Вопросы похожие на “Mongoose UpdateOne Пример”

Больше похожих ответов на “Mongoose UpdateOne Пример” по JavaScript

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

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