Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
629 views
in Technique[技术] by (71.8m points)

mongodb - saving a findOneAndUpdate entry in mongoose and mongDB

I am using mongoose to check if a user input already exists in my database, and if it doesn't I want to create a new record with that user input together a processedInput (done by another function elsewhere). Below is the findOneAndReplace function I have set up to accomplish this:

User.findOneAndUpdate({original: userInput},{original: userInput, processString: outPut} , {new: true, upsert: true}
  );

Everything seems to run fine but when I check my mongoDB, my collections are not being updated.

I have tried setting upsert to true and using User.save() with no success. There are no connection issues with the database.

question from:https://stackoverflow.com/questions/66052322/saving-a-findoneandupdate-entry-in-mongoose-and-mongdb

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This resolved my issue: I added a callback function as an argument to the findOneAndReplace.

callback=(error,data)=>{if(error){console.log(error}
else {console.log(data)}



  User.findOneAndUpdate({original: userInput},{original: userInput, processString: outPut} , {new: true, upsert: true}, callback);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...