//查数据库
chadata: function (value) {
let dates = this.data.dates;
const db = wx.cloud.database()
db.collection('xingdata').where({
time: dates,
name: value,
})
.get({
success: (res) => {
console.log(res)
if (res.data.length == 0){
return 2
}
else{
return 1
}
}
})
},
chaxuntb(){
let that =this;
//let radio1 = this.data.radio1;
let a = that.chadata('小明');
console.log('a',a)
},
打印出来 a undefined 不知道 哪里错了,a不应该是1或者2吗?
你输出一下that.chadata是什么
所有的请求,都要考虑一下异步问题