出现同样问题, canvas 上绘制了一张相册里选择的图片 勾选原图 然后经过一些编辑之后保存(canvasToTempFilePath) 就会出现 no image 的报错如果不勾选原图 可以正常保存
如何解决canvasToTempFilePath:fail no image?wx.getImageInfo({ src: tempFilePaths[index], success(res1) { ctx.drawImage(tempFilePaths[index], 0, 0, res1.width, res1.height, 0, 0, res1.width, res1.height); console.log(4) ctx.draw(false, function () { index = index + 1;//上传成功的数量,上传成功则加1 wx.canvasToTempFilePath({ width: res1.width, height: res1.height, destWidth: res1.width, destHeight: res1.height, fileType: 'jpg', quality: 0.3, canvasId: 'pressCanvas', success: function success(res) { console.log(5) let images = that.data.images.concat(res.tempFilePath) let status = that.data.status.concat(0) // 限制最多只能留下3张照片 images = images.length <= 9 ? images : images.slice(0, 9) if(images.length>=9){ that.setData({ jia:0 }) } that.setData({ images: images, is_upload: 1, status:status }) that.getCanvasImg(index, tempFilePaths); }, fail: function (e) { console.log(6,e) that.getCanvasImg(index, tempFilePaths); } }); }); }, fail:function(e){ common.errorShowModal() } }) 真机测试就会出问题 上周真机测试还是好好的 代码也没有动 今天测试就出现这个问题 [图片]
2019-08-27等待官方回答
Android真机createInnerAudioContext()无法播放- 当前 Bug 的表现(可附上截图) 在小米6x的手机上 点击播放的时候 有进来播放的方法,但是无法播放 ,即没有打印错误也没有打印正在播放 在开发者工具上和ios上都可以播放 查了问这个问题的答案,好像都没看到哪里有解决?如果已经有解决的,麻烦提供下解决的链接或者方法 [图片] - 预期表现 希望能指点下看看是不是我哪里写错了 - 复现路径 在这个机子上都无法播放,所以必复现。 - 提供一个最简复现 Demo 这个是demon playwave:function(){ var isPlay=this.data.isplay; if(isPlay){ return; } const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.autoplay = true innerAudioContext.src = 'http://sq.ztloft.com:8804/wave/B854EC109ACBC346.mp3'; innerAudioContext.onPlay(() => { console.log("我正在播放"); that.setData({ isPlay: true }); }) innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode) that.setData({ isPlay: false }) }) innerAudioContext.onEnded(function (e) { console.log("结束"); that.setData({ isPlay: false }) }); }
2018-10-26等官方回答
小程序在安卓手机上绘制canvas,文字错乱。- 当前 Bug 的表现(可附上截图) 测试用机(锤子pro2,小米note3) 在安卓手机上使用canvas绘制文字。使用wx.canvasToTempFilePath转为图片后,文字的大小、颜色有10%左右的概率出现错乱。 文字大小错误: [图片] [图片] 文字颜色错乱: [图片] - 提供一个最简复现 Demo wechatide://minicode/QTLOXami7w2N 使用安卓机查看代码片段,多次点击绘制按钮可复现。
2018-09-11我碰到了这个问题,但不知道是不是跟你的一样.. 也是偶现的 [代码]{[代码][代码]errCode: 10002,[代码][代码]errMsg: [代码][代码]"INNERERCODE:-1001,ERRMSG:请求超时"[代码][代码]}[代码]
小程序 request接口偶现请求超时wx.request发起请求,偶现响应结果为: request:fail 请求超时。多个不同用户反馈该问题,Android&iOS都涉及。 此时客户端网络正常,可以访问其他小程序或网页,我们自身API服务器也可以通过PC或SSH等方式访问。 有没有人遇到类似问题?或者这是不是微信小程序某些版本的bug?
2018-08-25