自提的问题,没人回答。过了些天自己解决了!只能自问自答嘛。 聚合阶段。联表查询 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/database/aggregation/stages/lookup.html 希望对其他小伙伴有帮助
云开发数据库多表联表查询,怎么设计,代码怎么写?请教大神: 云开发数据库是mongodb, 如果一个表userID,存储用户基本资料。另外一个表fans,为某个用户的粉丝表,那么我要遍历fan表,并且通过查询suserID的用户信息,展示出来。请问这样的多表/联表查询 ,怎么做??? 可以写个案例嘛?谢谢 【userID】表,如下 userID: { { id : 28991887728, img: "https://www...." name : liang, age : 12, }, { id : 28991887722, img: "https://www...." name : chen, age : 17, }, { id : 28991887711, img: "https://www...." name : tong, age : 21, }, } 【fans】表,如 fans: [ 28991887722, 28991887711 ] 然后在页面上中展示我的粉丝 ID号、名字、年龄。云开发要这么写?跪谢!
2019-10-16使用“聚合阶段 + lookup联表查询” 聚合阶段 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/join.html 联表查询 https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/database/aggregation/stages/lookup.html
微信小程序云存储数据库有没有关联查询(类似left join)?创建了多个集合需要关联查询完整数据,但是开发文档上好像并没有说支持此功能
2019-10-15