https://uniapp.dcloud.io/uniCloud/cf-database-aggregate-operator.html#%E7%A4%BA%E4%BE%8B%E4%BB%A3%E7%A0%81-33
求 min 小于 40 且 max 大于 60 的记录。
const $ = db.command.aggregate
let res = await db.collection('price').aggregate()
.project({
fullfilled: $.or([$.lt(['$min', 30]), $.gt(['$max', 60])])
})
.end()
$.lt(['$min', 30])这个应该是40还是30啊
1 个评论
要回复文章请先登录或注册
DCloud_uniCloud_WYQ