标签: javascript node.js mongodb mongoose
在保存之前,我需要计算两个字段以添加到第三个字段中:
OrderSchema.pre('save', async function(next) { this.total_price = await this.product.price * this.quantity next() })
但是“ this.product.price”返回的值不确定,我如何获得您的价值?
谢谢。