fix(Uploader): preview is slow when sum of images size be bigger(#7307) (#9953)

* fix(Uploader): preview is slow when sum of images size be bigger(#7307)

* Update index.js

Co-authored-by: neverland <chenjiahan@buaa.edu.cn>
This commit is contained in:
chenjiangui 2021-11-29 20:50:33 +08:00 committed by GitHub
parent b59f58e951
commit 3e71c4a224
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,6 +93,14 @@ export default createComponent({
},
},
created() {
this.urls = [];
},
beforeDestroy() {
this.urls.forEach((url) => URL.revokeObjectURL(url));
},
methods: {
getDetail(index = this.fileList.length) {
return {
@ -259,7 +267,13 @@ export default createComponent({
}
const imageFiles = this.fileList.filter((item) => isImageFile(item));
const imageContents = imageFiles.map((item) => item.content || item.url);
const imageContents = imageFiles.map((item) => {
if (item.file && !item.url) {
item.url = URL.createObjectURL(item.file);
this.urls.push(item.url);
}
return item.url;
});
this.imagePreview = ImagePreview({
images: imageContents,