如何使用猫鼬模型创建派生字段并保存它们

时间:2018-10-06 15:58:39

标签: mongoose

我无法使用Schema.pre方法到达创建派生字段,但没有使它起作用。

productSchema.pre('save', (next)=>{
this.total = this.quantity * this.s_price
next();
})

我在定义架构后就使用了该方法

0 个答案:

没有答案