微信小程序无法连接上云数据库的字段
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 }) } }) 点击跳转后未显示界面任何内容 [图片] [图片] [图片]