可以使用db.command.gte
查询筛选条件,表示字段需大于或等于指定值。可以传入 Date 对象用于进行日期比较。
let curDate =
new
Date();
const _ = db.command
db.collection(
'todos'
).where({
progress: _.gte(curDate)
})
.get({
success: console.log,
fail: console.error
具体参考微信官网文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/command.gte.html