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)
})
猜当仅所有者可读时,_openid会被替换成用户的openid
可是我想做一个用户管理模块,管理员要改操作员数据怎么办呢?