Bạn đang sử dụng $set
toán tử nhiều lần. Cú pháp đúng cho $set
là:
{ $set: { <field1>: <value1>, ... } }
Bạn cần thay đổi cập nhật của mình đối số như thế này:
Book.findOneAndUpdate({ "_id": bookId }, { "$set": { "name": name, "genre": genre, "author": author, "similar": similar}}).exec(function(err, book){
if(err) {
console.log(err);
res.status(500).send(err);
} else {
res.status(200).send(book);
}
});