Find if object is changed in pre-save hook mongoose

后端 未结 1 1688
生来不讨喜
生来不讨喜 2021-02-04 08:14

I am trying to find if the object is changed in pre-save and do some actions accordingly. Followinfg is my code

var eql = require(\"deep-eql\");

OrderSchema.pos         


        
相关标签:
1条回答
  • 2021-02-04 09:00

    First of all, you don't need the original object at all. You can access it in the pre hook via this. Secondly post hook executes only after all pre hooks are executed, so your code doesn't make any sense at all (check mongoose docs).

    You can do the check by checking isModified in your pre hook and remove the post hook at all.

    OrderSchema.pre('save', function(next) {    
        if(!this.isModified()){
            //not modified
        }
        next();
    });
    

    Update

    In order to check if some property was modified, pass property name as a parameter to isModified function:

    if (this.isModified("some-property")) {
      // do something
    }
    
    0 讨论(0)
提交回复
热议问题