收藏
回答

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)

}

})


},




回答关注问题邀请回答
收藏

2 个回答

  • 猎人
    猎人
    2019-07-11

    可以使用 await async   了解下es的异步吧

    2019-07-11
    有用
    回复 1
  • 拾忆
    拾忆
    2019-07-11

    异步的问题

    2019-07-11
    有用
    回复 4
登录 后发表内容