微信小程序hidden问题
context.fillText('Hello World', 20, 380);
wx.drawCanvas({
canvasId: '2',
actions: context.getActions()
});
wx.canvasToTempFilePath({
canvasId: '2',
success: function (res) {
console.log(res.tempFilePath);
},
fail: function (res) {
console.log(res);
}
});
我这个canvas是隐藏的,hidden为true,将canvas转化成图片走的居然是fail,但hidden为false就是成功的。
官网说hidden只是简单的控制显示与隐藏,组件始终会被渲染,所以出现这样的情况真的好奇怪,大家有遇到过吗
原文地址 http://bbs.larkapp.com/forum.php?mod=viewthread&tid=11956&extra=page%3D1%26filter%3Dtypeid%26typeid%3D14