云函数的日期如何比较?
- 当前 Bug 的表现(可附上截图)
- 预期表现
数据表中有一条crttime = 2018.11.06的记录
查询条件是tbl_shop中大于当天日期, 即日志中 2018-10-21 的数据
按理应该返回这条11.06的记录的.但是实际没有得到这条数据
- 复现路径
建立一条数据, date型.
输入一条记录. 日期大于今天即可
建立云函数, 查找表中大于今天的数据
输出
- 提供一个最简复现 Demo
const _ = db.command
member.month_shop =0
tbl_shop.where({
crttime: _.gte(firstday)
}).get().then(res=>{
console.log(res)
})