SoFunction
Updated on 2025-04-04

Detailed explanation of the implementation example of el-upload large file slice upload

background

When uploading large files on the front end, various errors such as cross-domain errors will occur. Uploading in another slice can improve upload efficiency. Strictly record the following code to facilitate later cv(😄)

html

<el-upload action="" :data="uploadData" :http-request="uploadFileContinue">
</el-upload>

js

export default {
  name: '',
  data () {
    return {
    uploadData:{
        key: ""
    }
  },
  watch: {
  },
  computed: {
  },
  created () {
  },
  mounted () {
  },
  destroyed () {
  },
  methods: {
    async uploadFileContinue({ data, file }) {
            //data is an extra parameter sent to the top, that is, the:data="uploadData" in el-upload, which is brought in according to actual needs.            //file is a file            let url = "/api/XXX" //Upload file interface            try {
                 = file;
                 = 
                const res = await (url, data);
                return res;
            } catch (e) {
                return e;
            }
        },
       async uploadByPieces:(url, { key,file }) {
            // Slice every 5M slice            const chunkSize = 5 * 1024 * 1024; // 5MB per piece            // Total number of films            const chunkCount = ( / chunkSize); 
            // Generate promise collection and perform asynchronous processing            // That is, use            const promiseList = []
            try {
                for (let index = 0; index &lt; chunkCount; ++index) {
                    //Asynchronously perform shard upload                    (readChunk(index))
                }
                const res = await (promiseList)
                return res
            } catch (e) {
                return e
            }
            //------The above is the main logic of slice upload, which is relatively simple            //-----The following are the methods that need to be called when slicing            // Get the current chunk data            const getChunkInfo = (file, index) =&gt; {
                let start = index * chunkSize;
                let end = (, start + chunkSize);
                let chunk = (start, end);
                return { start, end, chunk };
            };
            // Shard upload interface            const uploadChunk = (data) =&gt; {
            // Since this project uses ajax, the following writing method is performed            // It can also be changed to axios, the principle is the same, mainly to cooperate with the plug-in and return to Promise                return new Promise((resovle, reject) =&gt; {
                    $.ajax({
                        url: url,
                        type: 'POST',
                        data: data,
                        contentType: false,
                        processData: false,
                        success: function (res) {
                            resovle(res);
                        },
                        error: function (err) {
                            reject(err);
                        }
                    })
                })
            }
            // chunk upload for a single file            const readChunk = (index) =&gt; {
                const { chunk } = getChunkInfo(file, index);
                let formdata = new FormData();
                ("key", key);
                ("file", chunk);
                return uploadChunk(formdata)
            }
        },
  }
}

Remark

After the slice is uploaded, the files need to be merged before the file is previewed. The file merging is carried out by the server.

The above is the detailed explanation of the implementation example of the el-upload large file slice upload. For more information about the upload of el-upload large file slice, please pay attention to my other related articles!