res返回的数据,在括号外获取不了?
res返回的数据,在括号外获取不了?
onload:function(){
const db= wx.cloud.database()
db.collection("time").where(
xxxx: msms //查询云数据库
)
.get()
.then(res=>{
console.log(res);
var mmn2=res.data[0].hhtd; //hhtd为数据库中的字段
console.log("test 测试1",bh)
this.setData({
mmn2: res.data[0].hhtd
})
})
var wmmn2=this.data.mmn2 //获取不了mmn2,但能获取this.data????
console.log("test 测试1",wmmn2) //获取不了 wmmn2 ?????
}