appData里面有值,为什么打印是null
onReady: function () {
var that = this;
wx.getStorage({
key: ‘driver’,
success: function (res) {
that.setData({
driver: res.data,
groupId: res.data.groupId
})
},
})
console.log(this.data.groupId);
wx.request({
url: ‘http://localhost:8082/wx/getVideoList/’,
data: {
groupId: that.data.groupId
},
success(res) {
console.log(res)
}
})
},