已经设置数据了但一直获取不到?
微信开发者工具Stablev1.02.1907160chu
getOpenid() {
let that = this;
wx.cloud.callFunction({
name: ‘getOpenid’, complete: res => {
console.log('云函数获取到的openid: ', res.result.openid)
var openid = res.result.openId;
that.setData({
openid: openid
})
}
})
}
但是
console.log(this.data.openid);
一直没有数据