- iphone 13 liveplayer显示异常
[图片] liveplayer 全屏播放时异常如上图,偶发现象,无错误日志,机型信息如下: [图片]
2021-12-10 - OPPO A93播放视频报 MEDIA_ERR_DECODE(-4003,-1) 的错误
OPPO A93手机,播放视频一直都会报 MEDIA_ERR_DECODE(-4003,-1) 错误,没有复杂的代码片段,就只是设置了video组件的src,设置过settimeout,取消了autoplay 都不生效
2021-08-02 - live-pusher,渲染失败 ,system permission denied?
liveplayer 预览显示: system permission denied,目前仅小米8发现问题,后台已开通拉流组件,appid: wx847b4e5cfd2a6314[图片]、 [图片] [图片]
2021-06-23 - wx.previewImage 在安卓机上预览图片黑屏
代码如下: wx.previewImage({ urls: ['https://fop-hotcamp-resource.rjfittime.com/e1788ec0-a3ce-4e8d-b209-329f12b72326.png'] }); 华为荣耀9 图片在模拟器、ios、浏览器均能正常访问,但在华为荣耀9机型中预览图片为黑屏
2020-12-25 - 请问现在微信小程序授权时的手机号支持海外号码么?
最近我们的海外用户反馈使用小程序授权手机号的绑定功能时验证码总是不能成功发送,如下图: [图片]
2020-03-30 - 部分机型小程序video组件bindend 事件不触发
安卓OPPO R11 Plus、 华为p20 pro手机,视频播放后bindend 事件不能触发,小程序上线一直在稳定运行,近期部分用户反馈视频播放后卡住,调试确认后发现bindend 事件不触发
2020-03-10 - 申请试用 测速系统,官方帮忙开通一下?
申请试用 测速系统 AppID(小程序ID) wx87b014133f824d5c 非常感谢
2020-02-27 - imgCheck云函数调用报错
今天早上线上用户云函数调用直接反馈{'errCode': -601001, 'errMsg': 'systerm error.'},十一点左右,又开始出现{'errCode': -404012, 'errMsg': 'cloud.callFunction:fail error while waiting for the result; at cloud.callFunction api; ', 'line': 1, 'column': 99797, 'sourceURL': 'https://lib/WASubContext.js'}
2020-01-02 - 调用imgseccheck云函数超时,且会阻塞异步函数
华为P9'system': 'Android 8.0.0', 'version': '7.0.8', 'brand': 'HUAWEI', 'model': 'EVA-DL00', 'SDKVersion': '2.9.2', 'platform': 'android'。图片审核接口调用很慢,经常超时,超时结果返回后还会阻塞异步函数的调用。比如demo代码片段中超时后catch中的wx.hideloading一直不能完成。 下面是我根据实际问题做的demo,问题在于catch后wx.hideloading不生效。ios没问题。 Page({ data: { }, onLoad() {}, getFileBuffer(img) { return new Promise((resolve, reject) => { wx.getFileSystemManager().readFile({ filePath: img, success: (res) => { resolve(res.data); }, fail: (err) => { reject(err); } }); }); }, checkImgPromise(ret) { return new Promise((resolve, reject) => { const file = ret; wx.cloud.callFunction({ name: 'checkImg', data: { file } }).then((red) => { if (red.result.errCode === 0) { resolve(red); } else if (red.result.errCode === 87014) { wx.hideLoading(); reject(red.result.errMsg); } }).catch((err) => { if (err.errCode === -401002 || err.errCode === -404010) { resolve(err); } else { reject(err); } }); }); }, chooseimg() { const that = this; wx.chooseImage({ count: 1, sizeType: ['compressed'], sourceType: ['camera', 'album'], success(res) { that.uploadImg(res.tempFilePaths[0]); }, fail() { } }); }, uploadImg(imgPath) { const that = this; wx.showLoading({ title: '图片上传中...', mask: true }); wx.getImageInfo({ src: imgPath, success() { that.getFileBuffer(imgPath) .then((ret) => { that.checkImgPromise(ret) .then((rer) => { wx.hideLoading(); console.log(rer); }) .catch((rej) => { wx.hideLoading(); // 重点在于代码执行后执行catch时,console能执行,hideloading或做一些其它异步的事情会失效 console.log(rej); }); }) } }); }, });
2019-11-05 - 安卓微信7.0.7webview不支持input file目前的修复不完全,仍有问题
华为mate8 测试机,微信7.0.7的input的bug仍未修复。多机型仍未修复[图片]
2019-10-18