收藏
回答

微信小程序无法连接上云数据库的字段

框架类型 问题类型 终端类型 AppID 环境ID 基础库版本
小程序 Bug 微信iOS客户端 wx494e9744e3c31629 xc-9go3cmty544a36e5 3.3.0

const db = wx.cloud.database()

const departmentsCollection = db.collection('departments')




Page({

  data: {

    departments: []

  

  },

  onLoad: function() {

    this.getDepartments()

  },


  getDepartments: function() {

    departmentsCollection.get().then(res => {

      this.setData({

        departments: res.data

      })

    }).catch(err => {

      console.error(err)

    })

  },

  goToDoctorSelection: function(e) {

    let departmentCode = e.currentTarget.dataset.code

    wx.navigateTo({

      url:  '/pages/doctorSelection/doctorSelection?departmentCode=' + departmentCode

    })

  }

})





//doctorSelction

const db = wx.cloud.database()

const departmentsCollection = db.collection('departments')


Page({

  data: {

    departments: []

  },

  onLoad: function() {

    this.getDepartments()

  },

  getDepartments: function() {

    departmentsCollection.get().then(res => {

      this.setData({

        departments: res.data

      })

    }).catch(err => {

      console.error(err)

    })

  },

  goToDoctorSelection: function(e) {

    let departmentCode = e.currentTarget.dataset.code

    wx.navigateTo({

      url: '/pages/doctorSelection/doctorSelection?departmentCode=' + departmentCode

    })

  }

})

点击跳转后未显示界面任何内容

回答关注问题邀请回答
收藏

1 个回答

  • 跨商通
    跨商通
    01-29

    有没有拿到数据,打印一下不就知道了?

      getDepartments: function() {
    
        departmentsCollection.get().then(res => {
    
    console.log(res)//这里看一下有没有,不就行了?
    
          this.setData({
    
            departments: res.data
    
          })
    
        }).catch(err => {
    
          console.error(err)
    
        })
    
      },
    
    01-29
    有用
    回复
登录 后发表内容
问题标签