问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 小游戏 Bug wx.createUserInfoButton 客户端 6.7.3 2.3.0
用户信息按钮有时显示,有时不显示(大多数时候不显示),昨天开始出现这个问题
正常是这样子
代码
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
}
})
微信小程序开发问题解答
微信小程序开发者回答:
应该是坐标问题,楼主试试把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
}
});
创建出来的按钮不显示
本文网址:http://www.91bianli.com/kaifazhinan/76118.html