收藏
回答

获取多个云数据库中的集合,第一个有内容,其他的都为空,

框架类型 问题类型 终端类型 AppID 环境ID 基础库版本
小程序 Bug 微信安卓客户端 wx4e73bc5476515411 zhihuiyigui-0gho0u0g2c00d378 2.14.1

const cloth1 = wx.cloud.database().collection('yichu1')

const cloth2 = wx.cloud.database().collection('yichu2')

const cloth3 = wx.cloud.database().collection('yichu3')

const cloth4 = wx.cloud.database().collection('yichu4')

cloth1.get({

          success:function(res){

            that.setData({

              coatList:res.data

            })

            console.log(that.data.coatList)

            app.coatList = that.data.coatList 

        }

        });

        cloth2.get({

          success:function(res){

            that.setData({

              topList:res.data

            })

            console.log(that.data.topList)

            app.topList = that.data.topList 

        }

        });

        cloth3.get({

          //如果查询成功的话

          success:res=>{

            that.setData({

              skirtList:res.data

            })

            app.skirtList = that.data.skirtList

        }

        });

        cloth4.get({

          //如果查询成功的话

          success:function(res){

            that.setData({

              pantsList:res.data

            })

            app.pantsList = that.data.pantsList

        }

        });

第一个res可以获取到集合,其他的几个都不能获取数据
回答关注问题邀请回答
收藏

1 个回答

  • 跨商通
    跨商通
    2023-05-30

    每个脚本里console.log(res)。

    2023-05-30
    有用
    回复
登录 后发表内容
问题标签