diff --git a/src/uploader/README.zh-CN.md b/src/uploader/README.zh-CN.md index 2dbba0707..268d78a0a 100644 --- a/src/uploader/README.zh-CN.md +++ b/src/uploader/README.zh-CN.md @@ -357,3 +357,11 @@ before-read、after-read、before-delete 执行时会传递以下回调参数: | @uploader-loading-icon-size | `22px` | - | | @uploader-loading-icon-color | `@white` | - | | @uploader-disabled-opacity | `@disabled-opacity` | - | + +## 常见问题 + +### 上传 HEIC/HEIF 格式的图片后无法展示? + +目前 Chrome、Safari 等浏览器不支持展示 HEIC/HEIF 格式的图片,因此上传后无法在 Uploader 组件中进行预览。 + +[HEIF] 格式的兼容性请参考 [caniuse](https://caniuse.com/?search=heic)。 diff --git a/src/uploader/utils.ts b/src/uploader/utils.ts index 11cf4c8c2..1f75ad488 100644 --- a/src/uploader/utils.ts +++ b/src/uploader/utils.ts @@ -9,9 +9,9 @@ export function toArray(item: T | T[]): T[] { } export function readFile(file: File, resultType: ResultType) { - return new Promise((resolve) => { + return new Promise((resolve) => { if (resultType === 'file') { - resolve(); + resolve(null); return; }