如何使用两个字段在Moongose中保存第三个字段?

时间:2019-04-11 21:12:14

标签: javascript node.js mongodb mongoose

在保存之前,我需要计算两个字段以添加到第三个字段中:

OrderSchema.pre('save', async function(next) {
    this.total_price = await this.product.price * this.quantity

    next()
})

但是“ this.product.price”返回的值不确定,我如何获得您的价值?

谢谢。

0 个答案:

没有答案