下面是我的代码

var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/test');

var Cat = mongoose.model('Cat', {
    name: String,
    age: {type: Number, default: 20},
    create: {type: Date, default: Date.now} 
});

Cat.findOneAndUpdate({age: 17}, {$set:{name:"Naomi"}},function(err, doc){
    if(err){
        console.log("Something wrong when updating data!");
    }

    console.log(doc);
});

我已经在我的mongo数据库中有一些记录,我想运行这段代码来更新年龄为17岁的名称,然后在代码的末尾打印结果。

然而,为什么我仍然从控制台得到相同的结果(不是修改后的名称),但当我进入mongo db命令行并键入“db.cats.find();”。结果是修改后的名称。

然后我返回去再次运行这段代码,结果被修改了。

我的问题是:如果数据被修改了,那么为什么我仍然在console.log它的第一时间得到原始数据。


当前回答

对于任何使用Node.js驱动而不是Mongoose的人,你会想要使用{returnorigoriginal:false}而不是{new:true}。

2021年- Mongodb ^4.2.0更新 {returnDocument: 'after'}

其他回答

为什么会发生这种情况?

默认是返回原始的、未修改的文档。如果你想要返回新的更新的文档,你必须传递一个额外的参数:一个新属性设置为true的对象。

猫鼬医生说:

查询# findOneAndUpdate 模型。findOneAndUpdate(条件,更新,选项,(错误,doc) => { // error:发生的任何错误 // doc:如果' new: false '则应用更新前的文档,如果' new = true '则应用更新后的文档 }); 可用选项 New: bool -如果为true,则返回修改后的文档而不是原始文档。默认为false(在4.0中更改)

解决方案

如果你想在doc变量中得到更新后的结果,传递{new: true}:

//                                                         V--- THIS WAS ADDED
Cat.findOneAndUpdate({age: 17}, {$set:{name:"Naomi"}}, {new: true}, (err, doc) => {
    if (err) {
        console.log("Something wrong when updating data!");
    }

    console.log(doc);
});

我知道,我已经迟到了,但让我在这里补充一个简单而有效的答案

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)

这是findOneAndUpdate的更新代码。它的工作原理。

db.collection.findOneAndUpdate(    
  { age: 17 },      
  { $set: { name: "Naomi" } },      
  {
     returnNewDocument: true
  }    
)

默认情况下,findOneAndUpdate返回原始文档。如果你想让它返回修改后的文档,给函数传递一个options对象{new: true}:

Cat.findOneAndUpdate({ age: 17 }, { $set: { name: "Naomi" } }, { new: true }, function(err, doc) {

});

下面显示了查询mongoose的findOneAndUpdate。这里new: true用于获取更新的文档,fields用于获取特定的字段。

如。findOneAndUpdate(条件,更新,选项,回调)

await User.findOneAndUpdate({
      "_id": data.id,
    }, { $set: { name: "Amar", designation: "Software Developer" } }, {
      new: true,
      fields: {
        'name': 1,
        'designation': 1
      }
    }).exec();