mpvue 小程序获取用户信息
Posted 223zzm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mpvue 小程序获取用户信息相关的知识,希望对你有一定的参考价值。
<button open-type="getUserInfo" @getuserinfo="getUserInfo">登录</button>
methods: getUserInfo: function(e)
console.log(e) wx.setStorageSync("nickname", e.mp.detail.userInfo.nickName); wx.setStorageSync("avatarUrl", e.mp.detail.userInfo.avatarUrl); , login() if (!wx.getStorageSync("nickname")) wx.login( success: function(res)
console.log(res)
); , created() this.login(); ,
以上是关于mpvue 小程序获取用户信息的主要内容,如果未能解决你的问题,请参考以下文章