db.collection('accountbook').aggregate().group({
_id: '$date'
}).end().then(res => {
that.setData({
total: res.list.length
})
比如:最新录入5月25日的数据,分组统计只获取到25日前的数据,云数据库中25日数据存在。打开着工具重新编译代码后能分组统计到25日的数据。请问这是什么原因?