云数据库查询时where条件,没有起作用?
return new Promise(function(resolve, reject) {
const db = wx.cloud.database()
// 查询指定openid的用户
db.collection(‘user’).where({
// _openid: openid
_openid: ‘0’ // 无论此处为何值都能查到数据
}).get().then(res => {
if(res.data.length === 1) {
console.log(‘find’,res.data)
resolve(res)
}
else {
console.log(‘not find’)
}
}).catch(err => {
reject(err)
})