其实小程序端不能用lookup文档早有说明了,只是用了灰色字体很隐蔽。。。 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/join.html 联表查询 版本要求:[代码]wx-server-sdk[代码] [代码]1.3.0[代码] 或以上 不支持在小程序端使用
lookup bug 报错 errMsg: Permission denied 权限设置没问题小程序端代码如下: var res = await db.collection('collection') .aggregate() .lookup({ from: 'article', localField: 'article_id', foreignField: '_id', as: 'article_info', }) .limit() .skip( * (this.data.page - )) .end(); collection权限设置是仅创建者可读写,article权限设置设置为所有者可读,创建者可写 以上查询报错为: Uncaught (in promise) Error:errCode:-502003 database permission denied | errMsg: Permission denied 然后把代码修改成: var res = await db.collection('collection') .aggregate() .limit() .skip( * (thisdata.page - )) .end() 正常返回数据 单独查询article数据也能正常返回数据,代码如下: let res = await db.collection('article').limit(10).skip(10 * (this.data.page - )).get(); 怀疑还是权限问题,把article权限修改为所有人可读写,结果还是报错 Uncaught (in promise) Error:errCode:-502003 database permission denied | errMsg: Permission denied 改用服务端调用数据能正常返回数据 varres = await db.collection('collection') .aggregate() .match({ _openid:openid, cate_id: cate_id }) .lookup({ from: 'article', localField: 'article_id', foreignField: '_id', as: 'article_info', }) .limit(num) .skip(num * (page - 1)) .end(); 请问应该怎么设置,哪里的权限设置有问题
2020-10-16openid等信息不要忘记打马赛克
微信小程序云控制台存储图片获取失败我的appid:wx3ca26886ff4b1eeb 图片突然就获取不了了,控制台显示 VM76:1 Failed to load image https://7368-shaobeike-kuj6l-1301180386.tcb.qcloud.la/1580962817940.png net::ERR_CONNECTION_TIMED_OUT [图片] [图片] [图片]
2020-05-15