个人案例
- JJ导购助手
问题机型华为matep30,出现点击加载分包时闪退,分包大小139kb,请问下什么原因呢?
企业微信小程序分包失败闪退扫码体验
- 企业微信聊天窗口小程序安卓手机wx.qy.getCurExternalContact没有执行
执行结果:安卓手机首次进入没有弹窗,在执行onload之后,又多次调用onshow和onhide 代码逻辑:在onload里写了接口调用方法,在回调里调用了wx.qy.getCurExternalContact,没有走成功,失败,完成方法,有重新调用了onshow。
2021-04-28 - 企业微信中小程序打开外部联系人失败,显示fail_user not in allow list。
[图片]
2021-03-23 - 小程序加载页面,出现缓存失败,导致页面白屏。
[图片]
2020-05-14 - 部分用户小程序可以打开入口页面,但是白屏,看真机日志并没有报错也没有调用服务端,想问下如何解决?
[图片] 这是用户反馈的一个案例 [图片] 这是日志,向各位大佬寻求下解决方案。
2020-05-13 - 小程序后台已经配置了域名,但是真机上不能调用,开发者工具上没有报错,是为什么?
[图片]
2020-04-18 - 小程序请求接口报错
- 当前 Bug 的表现(可附上截图) 手机+验证码登录,提交时wx.request()请求失败,手机型号iphonexr,网络状态是wifi,出现频率较高,请官方给出解答,谢谢! [图片] - 预期表现 - 复现路径 - 提供一个最简复现 Demo
2019-07-23 - 小程序审核
在审核时,需要提供测试账号,但是审核页面没有提供测试账号的表单,这是为什么?
2019-04-12 - 小程序获取经纬度为00
- 当前 Bug 的表现(可附上截图) 获取当前位置的经纬度,经纬度的值为00 [图片] - 预期表现 经纬度的值不能为空,业务需求是必要条件 - 复现路径 代码片段如下: //获取地理位置信息 getlocations(){ let that = this; wx.getSetting({ success(res) { console.log('用户是否授权地理位置信息==='+res.authSetting['scope.userLocation']); if (!res.authSetting['scope.userLocation']) { wx.authorize({ scope: 'scope.userLocation', success() { wx.getLocation({ type: 'gcj02', success: function (res) { console.log(res); that.latitude = res.latitude; that.longitude = res.longitude; console.log('当前经度',that.latitude); console.log('当前纬度',that.longitude); let speed = res.speed; let accuracy = res.accuracy; that.gaodeMap(); }, }) }, fail(){ wx.showModal({ title: '请授权当前位置', content: '需要获取您的地理位置,请确认授权', success: function(res) { if (res.confirm) { wx.openSetting({ success: function (data) { if (data.authSetting["scope.userLocation"] === true) { wx.showToast({ title: '授权成功', icon: 'success', duration: 1000 }) that.getlocations(); //授权成功之后,再调用chooseLocation选择地方 } else { wx.showToast({ title: '授权失败', icon: 'success', duration: 2000 }) that.getlocations(); } } }) console.log('用户点击确定') } else if (res.cancel) { that.getlocations(); console.log('用户点击取消') } } }) // that.showModel(); } }) } else{ wx.getLocation({ type: 'gcj02', success: function (res) { console.log(res); that.latitude = res.latitude; that.longitude = res.longitude; console.log('当前经度',that.latitude); console.log('当前纬度',that.longitude); let speed = res.speed; let accuracy = res.accuracy; that.gaodeMap(); }, }) } } }) }, - 提供一个最简复现 Demo
2019-03-30