官方例子會出現若是更換屢次頭像的話,就會上傳屢次。javascript
當使用手動上傳時候,會出現若是點擊更換頭像3次的話,上傳時候會將3次更換的頭像所有上傳。java
解決方法就是:this
handleChange(file, fileList) { this.$refs.upload.clearFiles(); this.$refs.upload.uploadFiles.push(file); this.imageUrl = file.url; },