云开发,关于数据库权限引发的思考
考虑下面集合
如果该集合的权限是仅创建者可读写,那么以下两种写法是否一致
const db = wx.cloud.database()
db.collection('profiles').where({
_openid: 'xxx' // 填入当前用户 openid
}).count().then(res => {
console.log(res.total)
})
占位
const db = wx.cloud.database()
db.collection('profiles').count().then(res => {
console.log(res.total)
})
占位
如果集合权限是仅创建者可读可写,那么上面两个查询语句的结果是否一致?
关于这个问题,我已经有了答案,但是我不能说😄