wepy.login()返回undefined

1、问题描述:可以正常获取登录者的userInfo信息,但是在使用async/await调用wepy.login()时返回undefined

wepy.login()返回undefined_第1张图片2、解决方法:

在app.wpy中配置 promisify,代码如下:

 constructor () {
    super()
    this.use('requestfix')
    this.use('promisify')
  }

 

你可能感兴趣的:(前端)