小程序获取用户信息,没有返回头像
利用小程序的button组件让用户授权,授权成功之后返回的用户信息没有头像
<view class="modal-footer"> <button class="btn-single" open-type='getUserInfo' bindgetuserinfo='setInfo'>好的,去授权</button> </view> |
这边是button授权框
setInfo: function(e) { console.log(e) if (e.detail.userInfo != undefined && e.detail.userInfo != null) { app.setUserInfo(e.detail.userInfo); this.addUser(); } }, |
这边是获取用户信息的js,
打印出来之后极个别用户没有头像!
这个用户是有头像的
