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)
}
})
},
可以使用 await async 了解下es的异步吧
异步的问题
根据你截图来猜测,下面的代码应该写到上面的位置
基本就是异步的问题