People StackOverflow, I am burning the question, how to increase the Numerical value in Mongoose? I tried the code below, although it does not work. I am trying to increase the value by one when presenting the form. Below is my code:
app.post('/like', function (req, res) {
var id = req.body.id;
var query = {_id: id};
var post = Meme.findOne(query);
Meme.findOneAndUpdate(post, post.likes: post.likes+1)
});
Thanks so much for your valuable help!
source
share