hits: _.eq(546) //hits字段等于546的记录
}).get().then(res=>{
this.setData({
Demolist:res.data
})
})
},
[]( )(二)逻辑操作符
-------------------------------------------------------------------
command.**and( )** 同时满足括号中的多个查询条件
command.**or( )** 满足其中任意一个查询条件即可
command.**not( )** 不满足括号中的查询条件
command.**nor( )** 都不满足括号中的查询条件
const db = wx.cloud.database();
const _ = db.command;
getData(){
db.collection("Demolist").where({
hits: _.and(_.gt(50) , _.lt(100)) //hits大于50小于100
}).get().then(res=>{
console.log(res)
})
db.collection("Demolist").where({
hits: _.not( _.or([_.lt(50) , _.eq(100)]) ) //hits大于50且不等于100
}).get().then(res=>{
console.log(res)
})
//若需要判断多个字段,则在逻辑判断符中写入Object类型的