The set of core attributes in the file object.
All files from the $upload.files()
queues contain the following meta data for quick reference.
For reference and to key
in loops.
Reference to raw file object from browser.
The instance of the named upload object.
A raw base64 format for the data useful for image previews.
This will be
null
until the filespreview()
method is called since it can take a while to load up.
The name of the file.
The size of the file.
The mime type of the file.
Extension of the file from filename then mime-type based on what is available.
Current state of the file.
Could be one of the following: queue
, progress
, upload
, error
or success
.
Percent progress indicator for the file as an integer (0 to 100);
Errors from file.
The internal default format is: [{code: 'somecode', msg: 'There was an error.''}]
Errors can come internally from the module itself or externally from an error on the server end.
Use
parseErrors
option when installing the plugin to format errors from the server.
Function to generate a raw format of the file useful for image previews.
This is useful when setting a local preview of the file before starting an upload.
<img
:src="$upload.file().$raw || $auth.user().avatar"
/>
Completely removes the file from the queue.