Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.41 KB

File metadata and controls

26 lines (19 loc) · 1.41 KB
title page_title description slug canonicalLink position
Chunk Upload
Chunk Upload - Upload - Kendo UI for Vue
Upload files in chunks when working with the Kendo UI Upload wrapper in Vue projects.
chunk_upload_wrapper
4

Chunk Upload

The Upload enables you to upload chunks of files from local file systems to dedicated server handlers which are configured to receive them.

To enable chunk upload, set the async-chunk-side property to true. Each request sends a separate file blob and additional string metadata to the server. This metadata is in a stringified JSON format and contains the chunkIndex, contentType, totalFileSize, totalChunks, and uploadUid properties. These properties enable the validation and combination of the files on the server. The response also returns a JSON object with the uploaded and fileUid properties which notify the client what the next chunk is.

{% meta height:250 %} {% embed_file chunk-upload/main.vue preview %} {% embed_file chunk-upload/main.js %} {% endmeta %}

Suggested Links