标签: mongoose
我无法使用Schema.pre方法到达创建派生字段,但没有使它起作用。
productSchema.pre('save', (next)=>{ this.total = this.quantity * this.s_price next(); })
我在定义架构后就使用了该方法