微信获取用户信息的按钮监听结果,有时候能获取到,有时候会获取不到
if (wx.createUserInfoButton) { var button = wx.createUserInfoButton( { type: 'text', text: '', style: { left:0, right:0, top:0, bottom:0, } }) button.onTap((res) => { if(res.errMsg=="getUserInfo:ok") { //获取到用户信息 wxUser=res wxUserHead = res.userInfo.avatarUrl wxUserName = res.userInfo.nickName LayaSample.gameLoad.toStartGame() //设置加载界面的授权状态 LayaSample.gameLoad.isAccredit=true; //清除微信授权按钮 button.destroy() } else { console.log("授权失败") } }) } 微信获取用户信息的按钮监听结果,有时候能获取到,有时候会获取不到,之前没有出现过类似情况,这两天发现了很多这种问题,试过各种手机测试都有问题,不知道这个bug怎么解决