Mongoose update not updating: { ok: 0, n: 0, nModified: 0 }

与世无争的帅哥 提交于 2019-12-02 06:09:53

问题


I have a collection named "permissions" on MongoDB. I want to implement a simple update like this:

let schema = new Schema({
    title: String
  });
  let Permissions = mongoose.model("Permission", schema);
  let permission = new Permissions();

  let query = {};
  let newValues = {
    $set: {
      title: "Yes"
    }
  };
  permission.updateOne(query, newValues, (err, docs) => {
    console.log(err); // null
    console.log(docs); // { ok: 0, n: 0, nModified: 0 }
    if (err) return cast.error(err);
    return cast.ok();
  });

However I receive { ok: 0, n: 0, nModified: 0 } in console log of docs and null in console log of err.

What am I doing wrong?


回答1:


According to the docs

Models are fancy constructors compiled from Schema definitions. An instance of a model is called a document. Models are responsible for creating and reading documents from the underlying MongoDB database.

So you need to create instance during the .save() call only. Other operations(update, read, delete) applied on the existing document and hence, no need to create instance.



来源:https://stackoverflow.com/questions/52716535/mongoose-update-not-updating-ok-0-n-0-nmodified-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!