时间:2019-05-03 来源:小程序工厂
一、复现问题是困难的,测试一百次有可能遇到一次,但是用户多了这个的概率还是很高
二、我测试的机型:安卓荣耀7A 微信版本6.7.2;用户的机型还未统计,目前看很多种都有可能发生
三、代码片段
//pages/weauth/weauth.wxml
//pages/weauth/weauth.wxss
.button {
background-color: #00B050;
padding-left: 150rpx;
padding-right: 150rpx;
line-height: 2.0em;
color: #FFF;
display: flex;
align-items: center;
}
//pages/weauth/weauth.js
Page({
bindGetUserInfo: function (resUserInfo) {
var ret = resUserInfo.detail.userInfo;
if (ret) {
wx.switchTab({
url: '../../pages/main/main'
});
}
else{
console.log('Auth Error');
}
})
你好,这边测试问题未复现。请提供出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)