- 小游戏pc端使用wx.createUserInfoButton授权成功后wx.login进入fail
let button = wx.createUserInfoButton({ type: 'text', text: '授权登录', style: { left: ddsystemInfo.screenWidth / 2 - 100, top: ddsystemInfo.screenHeight * 0.618 - 20, width: 200, height: 40, backgroundColor: '#16b161', color: '#ffffff', textAlign: 'center', fontSize: 16, lineHeight: 40, borderRadius: 4 } }); button.onTap((res) => { console.log(JSON.stringify(res)); button.destroy(); wx.login({ success(res) { console.log('login成功1', JSON.stringify(res)); }, fail: function (ress) { console.log('login未成功1', JSON.stringify(ress)); var getData = { result: "-1", data: { msg: 'login未成功' } }; } }) })
2021-05-06 - 小游戏添加广告后游戏卡死
- 当前 Bug 的表现(可附上截图)微信开发工具上传的开发版本没有问题,广告正常显示,但是发布正式版本后进游戏等待一会后游戏直接卡死。微信公众平台流量主界面显示广告正在审核中,和这个有关系吗 - 预期表现 广告和游戏并存 - 复现路径 直接进游戏就好 - 提供一个最简复现 Demo 小游戏搜索 方盒小队挂机版 不过现在回版了,看不见了
2018-08-24