聚合操作符sum如何累加字符串?
const $ = db.command.aggregate
db
.collection('goods')
.aggregate()
.group({
_id: null,
totalPrice: $.sum('$price')
})
.end()
这里的price如果是字符串sum的结果都是0,用什么方法可以将price处理成数字吗?
const $ = db.command.aggregate
db
.collection('goods')
.aggregate()
.group({
_id: null,
totalPrice: $.sum('$price')
})
.end()
这里的price如果是字符串sum的结果都是0,用什么方法可以将price处理成数字吗?