1 简单的获取用户信息
<open-data type='userAvatarUrl'></open-data> <open-data type="userNickName"> </open-data>
https://developers.weixin.qq.com/miniprogram/dev/component/open-data.html 其他内容可以到小程序的开发文档上找
2 按钮形式获取
<button open-type="getUserInfo" bindgetuserinfo="bindGetUserInfo">获取用户信息</button>
bindGetUserInfo:function(event){ console.log(event); },
点击按钮 就能获得用户的信息