支持端:小程序 2.8.3, 云函数 1.2.1, Web
判断字段是否存在
找出存在 tags 字段的记录
const _ = db.command
db.collection('todos').where({
tags: _.exists(true)
})
.get({
success: console.log,
fail: console.error
})
支持端:小程序 2.8.3, 云函数 1.2.1, Web
查询筛选操作符,给定除数 divisor 和余数 remainder,要求字段作为被除数时 value % divisor = remainder。
找出进度为 10 的倍数的字段的记录
const _ = db.command
db.collection('todos').where({
progress: _.mod(10, 0)
})
.get({
success: console.log,
fail: console.error
})
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。