data: {
images: [],
images2: [],
students: [],
// student:[],
sname: '',
sno: '',
depart: '',
cno: '',
h: '',
min: '',
mon: '',
d: '',
ch: '',
cmin: '',
cmon: '',
cd: '',
},
const db = wx.cloud.database()
db.collection('classes').where({
cno: this.cno
}).get({
success: res => {
console.log(res.data)
this.data.ch = res.data.h,
this.data.cd = res.data.d,
this.data.cmin= res.data.min,
this.data.cmon = res.data.mon
// this.setData({
// ch:this.h,
// cmin: res.data.min,
// cmon: res.data.mon,
// cd: res.data.d
我估计你是不是搞不清楚res.data是什么类型。它是个数组,如果处理一条记录,要用res.data[0],再取各种值。如果要处理多条记录,那就在wxml里面通过wx:for来循环解析数组,再取各种值。
你如果搞不清楚,把所有代码(wxml、js)都放上来,说清楚哪里出错,我们帮你改代码更直接。
嗯嗯 确实要先把整个取出来