小程序
小游戏
企业微信
微信支付
扫描小程序码分享
数据集合'zhongdui'包含一个记录M,M字段的_openid非空
console.log(this.data.openid)
var rr =await db.collection('zhongdui').where({
_openid:this.data.openid
}).get()
console.log(rr)
//运行后发现this.data.openid为任意值rr都能取到M
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你把集合权限改一下就好了,之前我也踩过这个坑...当权限为“仅创建者可读写”的时候,它好像会默认返回与你_openid相关联的文档
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
集合权限是 创建者和管理员可读吗, M 的openid 是不是 当前登录帐号的openid
建议看看 数据库的权限设置
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你把集合权限改一下就好了,之前我也踩过这个坑...当权限为“仅创建者可读写”的时候,它好像会默认返回与你_openid相关联的文档
var rr =await db.collection('zhongdui').where({
_openid: this.data.openid.toString()
}).get()
console.log(rr)
运行以后变成rr获取不到数据
onLoad: async function (options) {
this.data.openid = options.openid
集合权限是 创建者和管理员可读吗, M 的openid 是不是 当前登录帐号的openid
var rr =await db.collection('zhongdui').where({
_openid: this.data.openid.toString()
}).get()
console.log(rr)
运行以后变成rr获取不到数据
和_openid: this.data.openid结果都一样
onLoad: async function (options) {
await wx.cloud.callFunction({
name: 'login',
complete: res => this.data.openid = res.result.openid
})
console.log(this.data.openid)
建议看看 数据库的权限设置
var rr =await db.collection('zhongdui').where({
_openid: this.data.openid.toString()
}).get()
console.log(rr)
运行以后变成rr获取不到数据
console.log(rr);
_openid: this.data.openid.toString()
}).get().then(res=>{
console.log(res.data);
})