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
