根据网上搜索很多方法,总结了下这个可行,可以输出想要的两行数据:
onLoad: function (options) {
const db = wx.cloud.database()
const _ = db.command
const aa = db.collection('wuxing').where(_.or([
{
wuxing:'金'
},
{
wuxing : '木'
}
]))
aa.get({
success(res){
console.log(res.data)
}
})
}
但是,开发者工具说使用这个格式
db.collection('wuxing').where({
wuxing: _.or('金', '木')
})
.get()
问题就出现了,什么东西都没有,测试了N遍了,决定还是使用上面的,不适用推荐的