初级问题,文档看不懂。
我条件查询上边的数据库, 代码如下:,
请问两个件怎么写呀!如我要查 sex是男的,age要18岁或20岁的,就想这二个年龄的,别的年龄不要。怎么写这个条件查询语句呀!?
还有如果性别求:男, 年龄大于20 这个AND怎么写呀! 这个大于20怎么写呀!谢谢
db.collection("table").where({
"id":id
}).get()
.then(res => {
console.log(res.data)
this.setData({
table: res.data
})
})
.catch(err => {
console.error(err)
})
where({ sex: '男', age: 20 })
这个或不会定
age:_.or([_.eq(18),_.eq(20)])