Async
configurationConfigures the asynchronous upload of files. For more details, refer to the article on the async mode of the Upload.
async
Objectasync.autoRetryAfter
NumberIf async.autoRetryAfter is set, the failed upload request is repeated after the declared amount of time in miliseconds.
async.autoUpload
BooleanBy default, the selected files are uploaded immediately. To change this behavior, set autoUpload to false.
Default: true
async.batch
BooleanBy default and if supported by the browser, the selected files are uploaded in separate requests. To change this behavior, set batch to true. As a result, all selected files are uploaded in one request.
The batch mode applies to multiple files which are selected simultaneously. Files that are selected one after the other are uploaded in separate requests.
Default: false
async.chunkSize
NumberWhen async.chunkSize is set, the selected files are uploaded chunk by chunk with the declared size. 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 fileName, relativePath, chunkIndex, contentType, totalFileSize, totalChunks, and uploadUid properties. These properties enable the validation and combination of the file on the server side. The response also returns a JSON object with the uploaded and fileUid properties, which notifies the client what the next chunk is.
The
async.chunkSizeproperty is available only whenasync.batchis set tofalse.
async.concurrent
BooleanBy default, the selected files are uploaded one after the other. When async.concurrent is set to true, all selected files start to upload simultaneously.
The
async.concurrentproperty is available only whenasync.chunkSizeis set.
Default: false
async.maxAutoRetries
NumberSets the maximum number of attempts that are performed if an upload fails.
The
async.maxAutoRetriesproperty is available only whenasync.autoRetryAfteris set.
Default: 1
async.removeField
StringThe name of the form field that is submitted to removeUrl.
Default: "fileNames"
async.removeUrl
StringThe URL of the handler which is responsible for the removal of the uploaded files (if any). The handler must accept POST requests with one or more "fileNames" fields which specify the files that will be deleted.
async.removeVerb
StringThe HTTP verb that will be used by the remove action.
Default: "POST"
async.saveField
StringThe name of the form field which is submitted to saveUrl. The default value is the input name.
async.saveUrl
StringThe URL of the handler that will receive the submitted files. The handler must accept POST requests which contain one or more fields with the same name as the original input name.
async.useArrayBuffer
BooleanBy default, the files are uploaded as file data. When set to true, the files are read as a file buffer by using FileReader. This buffer is sent in the request body.
The
FileReaderconsumes the memory of the browser. As a result, if the user uploads a large file, then all the available memory of the client might be consumed and the upload might fail.
Default: false
async.withCredentials
BooleanControls whether to send credentials (cookies, headers) for cross-site requests.
If the browser does not support the File API,
async.withCredentialsis ignored.
Default: true