提交 4262f3bd 编写于 作者: H henian.xu

fix: 修改 H5 uploadFile 方法判断文件类型为 Blob, 解决 ios 下无法 new File 问题

上级 69cc1af1
......@@ -133,7 +133,7 @@ export function uploadFile ({
}
Promise
.all(files.map(({ file, uri }) => file instanceof File ? Promise.resolve(file) : urlToFile(uri)))
.all(files.map(({ file, uri }) => file instanceof Blob ? Promise.resolve(file) : urlToFile(uri)))
.then(upload)
.catch(() => {
setTimeout(() => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册