- pc端在canvas.draw回调内调用canvasToTempFilePath生成图片不全
上面是原图: [图片] 下面是draw后canvasToTempFilePath生成图片: [图片] 正常的pc:wx.getSystemInfoSync().pixelRatio: 1 不全的pc:wx.getSystemInfoSync().pixelRatio: 1.5 宽高打印出来的数据一致 html片段: js片段: ctx.draw(false, () => { wx.canvasToTempFilePath( { x: 0, y: 0, // width: _this.data.boxWidth, // height: _this.data.boxHeight, width: tempPosition.dWidth, height: tempPosition.dHeight, // destWidth: _this.data.boxWidth * wx.getSystemInfoSync().pixelRatio, // destHeight: _this.data.boxHeight * wx.getSystemInfoSync().pixelRatio, // destWidth: tempPosition.dWidth * wx.getSystemInfoSync().pixelRatio, // destHeight: tempPosition.dHeight * wx.getSystemInfoSync().pixelRatio, destWidth: tempPosition.dWidth, destHeight: tempPosition.dHeight, fileType: 'png', quality: 1, canvasId: 'tempCanvas', success(res) { console.log('编辑成功', res.tempFilePath) wx.hideLoading() _this.triggerEvent('editorImageOk', { tempFilePath: res.tempFilePath }) }, fail() { console.log('编辑失败', e) wx.hideLoading() wx.showToast({ title: '保存失败', icon: 'none' }) _this.closelEditor() } }, _this ) }) thinkpad笔记本,分辨率1920*1080,微信版本3.1.0.67, 小程序基础库2.15.0。 部分PC电脑版微信 小程序wx.canvasToTempFilePath生成图片显示不全。不是开发者工具!
2021-02-23 - 小程序textarea标签兼容问题 不触发bindblur
在iPad air,ios9.3.1中,小程序使用textarea标签在输入完,点击软键盘的完成后不触发 bindblur 事件 <textarea class="text-content" maxlength="{{maxlength}}" bindinput="changeLength" bindfocus="textfocus" bindblur="textblur" value="{{textContent}}" focus="{{focus}}" cursor-spacing="50" placeholder="{{textPlace}}" /> [图片] 控制台打印不出来textblur。大部分设备正常无此问题
2020-12-30 - PC端小程序音频播放中拖拽进度条2次及以上会触发onEnded事件
用vant组件实现进度条,拖拽进度条到音频中间位置,开始拖拽时调用backgroundAudioManager.pause(), 松手时调用backgroundAudioManager.seek('目标秒')。在拖拽第2次及以后大概率出现进度条没有拖拽至结束,但是却触发了onEnded事件。导致音频回滚到从头播放
2020-12-18 - 微信公众号消息通知点不开,报网络出错,轻触屏幕重新加载:101?
iPhone手机,系统ios13,微信版本是当前最新,消息通知没有打开配置的链接,而是报网络错误。 [图片] 这个是什么问题,能帮忙看下么?
2020-12-14