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

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -