本地支持$.toDate,但云环境不支持。
coll_car.aggregate()
.project({
startDateTime: $.add([$.toDate('$startTime'), 28800000])
})
.match(_.expr(
$.and([
$.eq([$.month('$startDateTime'), 3]),
$.eq([$.year('$startDateTime'), 2021])
])
))
.group({
_id: $.dayOfYear("$startDateTime"),
num: $.sum(1)
})
.sort({
_id: 1
})
.end()
.then(res => {
console.log(res.list)
}).catch(err => {
console.log(err)
})
同问,明明留好了接口,就是不写
直接new Date(timestamp)放进去用不行吗?