当wxml下用hidden来隐藏标签时,画板会生成也会触发回调函数,但是会不触发下面的 wx.canvasToTempFilePath,经测试可复现,不信自己可以试试。
context.draw(false, function () {
console.log(3434);
wx.canvasToTempFilePath({
canvasId: 'mycanvas',
width: 662,
height: 1018,
destWidth: 662,
destHeight: 1018,
success(res) {
console.log(res.tempFilePath);
that.setData({
imgpath: res.tempFilePath,
})
wx.hideLoading()
},
fail: function (res) {
console.log(res);
wx.hideLoading()
}
}, that);
遇到相同问题, 但是我是在安卓才能复现,在开发者工具不能
你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html