功能:微信小程序 点击按钮 弹出微信授权弹框 获取用户基本信息
html:
<button
class="btn"
open-type="getUserInfo"
bindgetuserinfo="bindgetuserinfo">弹框</button>
css:
.btn{
padding:0;
margin:0;
background:#fff;
width:100rpx !important;
border:1rpx solid #64bf5e;
color:#64bf5e;
font-weight:400;
font-size:28rpx;
}
js
bindgetuserinfo(res){
console.log(res)
},
1.引入button标签,设置open-type类型为getUserInfo
2.注意:判断是否已授权。如果当前用户已经授权,则不弹出授权弹框,需取消授权;未授权,弹出授权弹框。
3.用户信息从bindgetuserinfo事件中获取