mpvue 获取用户信息 getUserInfo 与 bindGetUserInfo

由于小程序更新不能直接获取用户信息,但是mpvue不支持bindGetUserInfo钩子。所以就需要变相的支持bindGetUserInfo钩子

 

事件名与函数名不能变

 methods: {
    bindGetUserInfo (e) {

    console.log(e.mp.detail.userInfo)
  }
}

在methods里面定义函数用户信息字段与原生的字段位置不同

代码地址 https://github.com/supper1/weball

你可能感兴趣的:(微信小程序,vue)