“Mongoose Zapisz lub aktualizacja” Kod odpowiedzi

Mongoose Zapisz lub aktualizacja

// This will create another document if it doesn't exist
findByIdAndUpdate(_id, { something: 'updated' }, { upsert: true });
florinrelea

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 zapytanie w Mongoose

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

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

Zapisz lub zaktualizuj Mongoose

// SAVE NEW OR UPDATE EXISTING COLLECTION
AnnoucementTagsModel.findOneAndUpdate({_id: announcementId}, newAnnoucementTags, {upsert: true}, function (err, doc) {
	if (error) throw new Error(error);
	console.log("succesfully saved");
});
DreamCoder

Odpowiedzi podobne do “Mongoose Zapisz lub aktualizacja”

Pytania podobne do “Mongoose Zapisz lub aktualizacja”

Więcej pokrewnych odpowiedzi na “Mongoose Zapisz lub aktualizacja” w JavaScript

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

Przeglądaj inne języki kodu