请问如果实现多条件云函数查询数据库?
我想先查询用户的openid然后再跨字段进行 “或” 操作,所以我用了.where().where()的方式,但是感觉很不规范,请问如何才能优化只有一个where()呢?
let w = [], id = {} if (keyword.trim() != '' ) { w = [{ ar: db.RegExp({ regexp: keyword, options: 'i' }) }, { name: db.RegExp({ regexp: keyword, options: 'i' }) } ] } id = { _openid: wxContext.OPENID } //先获取openid 然后再进行条件搜索,条件搜索数组不能为空,所以进行了一个判断 if (w.length != 0) { ctx.body = await cloud.database().collection( 'collectMusiclist' ).where(id).where(_.or(w)).skip(event.start).limit(event.count) .orderBy( 'createTime' , 'desc' ) .get().then(res => { return res }) } else { ctx.body = await cloud.database().collection( 'collectMusiclist' ).where({ _openid: wxContext.OPENID }).skip(event.start).limit(event.count) .orderBy( 'createTime' , 'desc' ) .get().then(res => { return res }) } |
新手一枚,想请各位大佬解答一下