提交 5671a3ec 编写于 作者: 雪洛's avatar 雪洛

fix: uni.canvasToTempFilePath在ios9.3.4报错的Bug

上级 ea551cdf
......@@ -446,9 +446,10 @@ export default {
}, this.$page.id)
return
}
if (!callbackId) {
if (!callbackId) {
// fix [...]展开TypedArray在低版本手机报错的问题,使用Array.prototype.slice
return {
data: [...imgData.data],
data: Array.prototype.slice.call(imgData.data),
width: destWidth,
height: destHeight
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册