云开发 json 数据库聚合如何返回结果?,急
const $ = db.command.aggregate
db.collection('goods') .aggregate() .group({ _id: null, totalPrice: $.sum('$price') })
.end()
上面是文档中的示例,介绍说返回的是
{ "_id": null, "totalPrice": 111 }如何把返回结果取出来,比如用到
this.setData({
})
里面,谢谢