小程序
小游戏
企业微信
微信支付
扫描小程序码分享
Canvas图片生成文字样式失效(有时正常有时不正常),正常截图如下:
错误截图如下(文字:越买越赚钱):
代码如下:
1 个回答
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
内容中可能包含密钥、AppSecret等私密参数,泄漏会有安全风险,请检查内容并确认。
我加了定时器,问题就解决了,不知道是不是这个原因
ctx.draw(false, () => {
setTimeout(() => {
wx.canvasToTempFilePath({
canvasId: 'myCanvas',
success: function (res) {
this.setData({
canimagePath: res.tempFilePath,
})
}
}, 100)
});
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
我加了定时器,问题就解决了,不知道是不是这个原因
ctx.draw(false, () => {
setTimeout(() => {
wx.canvasToTempFilePath({
canvasId: 'myCanvas',
success: function (res) {
this.setData({
canimagePath: res.tempFilePath,
})
}
})
}, 100)
});