This version of the documentation is outdated!
Click here for the latest released version.
FileUploadOptions
A FileUploadOptions
object can be passed to the FileTransfer objects upload method in order to specify additional parameters to the upload script.
Properties
- fileKey: The name of the form element. If not set defaults to "file". (DOMString)
- fileName: The file name you want the file to be saved as on the server. If not set defaults to "image.jpg". (DOMString)
- mimeType: The mime type of the data you are uploading. If not set defaults to "image/jpeg". (DOMString)
- params: A set of optional key/value pairs to be passed along in the HTTP request. (Object)
- chunkedMode: Should the data be uploaded in chunked streaming mode. If not set defaults to "true". (Boolean)
Description
A FileUploadOptions
object can be passed to the FileTransfer objects upload method in order to specify additional parameters to the upload script.