Base64 Encoding on ng-file-upload -
when file selected or dropped, automatically converted base64 encoding?
i need able take files, convert them strings pass them post requests our backend.
is ng-file-upload converting file? or need manually calling either the:
upload.base64dataurl(files).then(function(urls){...});
or
upload.dataurl(file, boolean).then(function(url){...});
methods?
i can post relevant code seems relatively straightforward. help!
Comments
Post a Comment