查询筛选条件,表示字段等于某个值。eq 指令接受一个字面量 (literal),可以是 number, boolean, string, object, array, Date。
发展壮大离不开广大客户长期以来的信赖与支持,我们将始终秉承“诚信为本、服务至上”的服务理念,坚持“二合一”的优良服务模式,真诚服务每家企业,认真做好每个细节,不断完善自我,成就企业,实现共赢。行业涉及效果图设计等,在成都网站建设、成都营销网站建设、WAP手机网站、VI设计、软件开发等项目上具有丰富的设计经验。
方法签名:
function eq(value: any): Command
比如筛选出所有自己发表的文章,除了用传对象的方式:
const myOpenID = 'xxx'
db.collection('articles').where({
_openid: myOpenID
})
还可以用指令:
const _ = db.command
const myOpenID = 'xxx'
db.collection('articles').where({
_openid: _.eq(openid)
})
注意 eq 指令比对象的方式有更大的灵活性,可以用于表示字段等于某个对象的情况,比如:
// 这种写法表示匹配 stat.publishYear == 2018 且 stat.language == 'zh-CN'
db.collection('articles').where({
stat: {
publishYear: 2018,
language: 'zh-CN'
}
})
// 这种写法表示 stat 对象等于 { publishYear: 2018, language: 'zh-CN' }
const _ = db.command
db.collection('articles').where({
stat: _.eq({
publishYear: 2018,
language: 'zh-CN'
})
})
表示字段不等于某个值,和 db.command.eq 相反
查询筛选条件,表示字段需小于指定值。可以传入 Date 对象用于进行日期比较。
方法签名:
function lt(value: number | Date): Command
示例代码
找出进度小于 50 的 todo
const _ = db.command
db.collection('todos').where({
progress: _.lt(50)
})
.get({
success: console.log,
fail: console.error
})
查询筛选条件,表示字段需小于或等于指定值。可以传入 Date 对象用于进行日期比较。
方法签名:
function lte(value: number | Date): Command
示例代码
找出进度小于或等于 50 的 todo
const _ = db.command
db.collection('todos').where({
progress: _.lte(50)
})
.get({
success: console.log,
fail: console.error
})
查询筛选条件,表示字段需大于指定值。可以传入 Date 对象用于进行日期比较。
方法签名:
function gt(value: number | Date): Command
示例代码
找出进度大于 50 的 todo
const _ = db.command
db.collection('todos').where({
progress: _.gt(50)
})
.get({
success: console.log,
fail: console.error
})
查询筛选条件,表示字段需大于或等于指定值。可以传入 Date 对象用于进行日期比较。
方法签名:
function gte(value: number | Date): Command
示例代码
找出进度大于或等于 50 的 todo
const _ = db.command
db.collection('todos').where({
progress: _.gte(50)
})
.get({
success: console.log,
fail: console.error
})
查询筛选条件,表示字段的值需在给定的数组内。
方法签名:
function in(values: any[]): Command
示例代码
找出进度为 0 或 100 的 todo
const _ = db.command
db.collection('todos').where({
progress: _.in([0, 100])
})
.get({
success: console.log,
fail: console.error
})
查询筛选条件,表示字段的值需不在给定的数组内。
方法签名:
function nin(values: any[]): Command
示例代码
找出进度不是 0 或 100 的 todo
const _ = db.command
db.collection('todos').where({
progress: _.nin([0, 100])
})
.get({
success: console.log,
fail: console.error
})
文章名称:创新互联小程序教程:微信小程序云开发API查询筛选条件
网址分享:http://www.shufengxianlan.com/qtweb/news38/155788.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联