云数据库日期格式(date)按天统计这个应该怎么写啊?
想按天 按月统计,但是数据库这里怎么也写不好了…哪个大神帮忙看看,数据库这个date格式真是把我折磨的厉害…
我希望他能按天列出统计,比如 2020-02-02 有多少条记录 2020-02-03有多少条记录
应该是分组做的吧~~
const db = wx.cloud.database()
const $ = db.command.aggregate
db.collection('fangke').aggregate()
.group({
_id: $.dayOfYear('$time'),
count: $.sum(1),
})
.end()
.then(res => console.log(res))
.catch(err => console.error(err))