// 用command的方式去筛选数据
最前面定义 const _ = db.command;
getData() {
db.collection("demoUser")
.where({
author:_.neq("Jerry")
})
.get()
.then(res=>{
console.log(res);
this.setData({
dataList: res.data
})
})
},
小tip:
in:
.where({
author:_.in([“Jerry”, “周勇”])
})
二、command的逻辑操作:
and, or,
.where({
hits:_.and(_.gt(0), _.lte(100))
})
多个字段的联合:
.where(_.and([
{
hits:_.gte(300)
},
{
author:_.eq("青山")
}
]))