官方例子会出现如果更换多次头像的话,就会上传多次。
当使用手动上传时候,会出现如果点击更换头像3次的话,上传时候会将3次更换的头像全部上传。
解决方法就是:
handleChange(file, fileList) { this.$refs.upload.clearFiles(); this.$refs.upload.uploadFiles.push(file); this.imageUrl = file.url; },
本文共 279 字,大约阅读时间需要 1 分钟。
官方例子会出现如果更换多次头像的话,就会上传多次。
当使用手动上传时候,会出现如果点击更换头像3次的话,上传时候会将3次更换的头像全部上传。
解决方法就是:
handleChange(file, fileList) { this.$refs.upload.clearFiles(); this.$refs.upload.uploadFiles.push(file); this.imageUrl = file.url; },
转载于:https://my.oschina.net/u/133911/blog/1633323