用户信息按钮有时显示,有时不显示(大多数时候不显示),昨天开始出现这个问题
正常是这样子
代码
userInfoButton = wx.createUserInfoButton({
type: 'image',
image: 'new/indexbtn.png',
style: {
left: (sysInfo.screenWidth - userInfoButtonWidth) / 2,
bottom: 70,
width: userInfoButtonWidth,
height: 111 * rate,
lineHeight: 40,
backgroundColor: '#ff0000',
color: '#ffffff',
textAlign: 'center',
fontSize: 16,
borderRadius: 4
}
})
找到问题了,wx.createUserInfoButton style属性中的bottom和right属性已经删除了,使用left和top属性就好了。微信官方也不出个通知,这种接口也是可以随意修改的?
应该是坐标问题,楼主试试把bottom去掉
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
我们这里昨天(10/24)也发现了问题;基本出现问题的都是安卓手机;
机型:一加5T、oppoA5、红米pro、oppoA33、SM-A8000、华为CAZ-AL10
代码片段:
this._button = wx.createUserInfoButton({
type: 'image',
text: '微信授权',
image: url,
style: {
left: .5 * (windowWidth - 167),
bottom: .5 * (windowHeight - 118) - 190,
width: 167,
height: 59
}
});
创建出来的按钮不显示