upload file at client side #518
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
can i upload the file and store at client side instead of providing server api location at url.
public uploader:FileUploader = new FileUploader({url: 'http://localhost:10051/api/',
autoUpload: true,
allowedMimeType: ['image/png', 'image/jpg', 'image/bmp', 'application/pdf'],
maxFileSize: 510241024 // 5 MB
});
instead of this one ...can i define like
public uploader:FileUploader = new FileUploader({url: 'path to local folder',
autoUpload: true,
allowedMimeType: ['image/png', 'image/jpg', 'image/bmp', 'application/pdf'],
maxFileSize: 510241024 // 5 MB
});
bump