首頁 > 軟體

element el-upload檔案上傳覆蓋第一個檔案的實現

2023-03-29 06:00:42

upload上傳是前端開發很常用的一個功能,在Vue開發中常用的Element元件庫也提供了非常好用的upload元件

基本用法

先來看官網

<el-upload
  class="upload-demo"
  action="https://jsonplaceholder.typicode.com/posts/"
  accept=".xls, .xlsx"
  :on-preview="handlePreview"
  :on-remove="handleRemove"
  :before-remove="beforeRemove"
  multiple
  :limit="1"
  :on-exceed="handleExceed"
  :file-list="fileList">
  <el-button size="small" type="primary">點選上傳</el-button>
  <div slot="tip" class="el-upload__tip">只能上傳jpg/png檔案,且不超過500kb</div>
</el-upload>
<script>
  export default {
    data() {
      return {
        fileList: [{name: 'food.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}, {name: 'food2.jpeg', url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'}]
      };
    },
    methods: {
      handleRemove(file, fileList) {
        console.log(file, fileList);
      },
      handlePreview(file) {
        console.log(file);
      },
      handleExceed(files, fileList) {
        this.$message.warning(`當前限制選擇 3 個檔案,本次選擇了 ${files.length} 個檔案,共選擇了 ${files.length + fileList.length} 個檔案`);
      },
      beforeRemove(file, fileList) {
        return this.$confirm(`確定移除 ${ file.name }?`);
      }
    }
  }
</script>



官網給出的解釋是通過 slot 你可以傳入自定義的上傳按鈕型別和文字提示。

可通過設定limit和on-exceed來限制上傳檔案的個數和定義超出限制時的行為。

可通過設定before-remove來阻止檔案移除操作。

但是在使用過程中 就發現一個很頭痛的問題,就是在使用 accept 屬性限定了檔案上傳字尾的時候 ,使用者還是可以去進行選擇全部檔案

然後使用者上傳了錯誤檔案後,再去上傳一個正確檔案 雖然用 limit限制了檔案的上傳個數

在使用者點選確定 按鈕 的時候,就發現 使用者之前上傳錯誤的檔案 會進入點選確定的提交事件 upload並不會做一個相應的覆蓋處理,還會上傳最開始第一個上傳的檔案,這對使用者的體驗來說相當不好

再來看看el-upload 屬性用法的解釋

  • :limit屬性來設定最多可以上傳的檔案數量,超出此數量後選擇的檔案是不會被上傳的
  • :on-exceed繫結的方法則是處理超出數量後的動作
  • 如果需要限制上傳檔案的格式,需要新增accept屬性

顯示已上傳檔案列表

<el-upload 
    :action="uploadActionUrl"
    accept="image/jpeg,image/gif,image/png"
    multiple
    :limit="1"
    :on-exceed="handleExceed"    
    :on-error="uploadError"
    :on-success="uploadSuccess"
    :on-remove="onRemoveTxt"
    :before-upload="onBeforeUpload"
    :file-list="files">
    <el-button size="small" type="primary">點選上傳</el-button>
    <div slot="tip" class="el-upload__tip">請上傳圖片格式檔案</div>
</el-upload>

實現方法就是:file-list="files"這個屬性的新增,其中files是繫結的陣列物件,初始為空。

效果如下圖

然後發現用 limit限制了檔案個數為1 使用者再上傳檔案後並不會對之前的檔案進行一個直接的覆蓋

:on-exceed 官方解釋是 上傳檔案個數超過限制的時候執行的

如果在這個方法內定義

它只是在網頁上對名字進行了一個改變,在確定上傳時會發現之前上傳的一個錯誤檔案還會存在於當前的filelist集合中,然後後臺就會報錯

解決辦法

我們可以用  :on-change

on-change: 檔案狀態改變時的勾點,新增檔案、上傳成功和上傳失敗時都會被呼叫

可以在使用這個勾點方法定義函數,不需要用limit限制檔案個數

:on-change=handleChange

      handleChange(file, fileList) {
        this.ebsFileList = fileList;
        this.ebsErrorImport = '';
        if (fileList.length > 1) {
               fileList.splice(0, 1);
               this.$message.error('只能上傳一個檔案');
           }
      }

可以達到檔案覆蓋上傳的效果

總結

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com