Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

angular convert file input to base64

Tags:

angular

I am trying to parse a file input to base64 in my angular project.

In my template I have:

<input type="file" (change)="handleUpload($event)">

and then my function is this:

handleUpload(event) {
    const file = event.target.files[0];
    const reader = new FileReader();
    reader.readAsDataURL(event);
    reader.onload = () => {
        console.log(reader.result);
    };
}

which gives me this error:

ERROR TypeError: Failed to execute 'readAsDataURL' on 'FileReader': parameter 1 is not of type 'Blob'.
    at _global.(anonymous function).(anonymous function) [as readAsDataURL] (webpack-internal:///./node_modules/zone.js/dist/zone.js:1323:60)
    at AccountFormComponent.handleUpload (account-form.component.ts:212)
    at Object.eval [as handleEvent] (AccountFormComponent.html:344)
    at handleEvent (core.js:13547)
    at callWithDebugContext (core.js:15056)
    at Object.debugHandleEvent [as handleEvent] (core.js:14643)
    at dispatchEvent (core.js:9962)
    at eval (core.js:10587)
    at HTMLInputElement.eval (platform-browser.js:2628)
    at ZoneDelegate.invokeTask (zone.js:421)
like image 619
Sandra Willford Avatar asked Mar 18 '18 17:03

Sandra Willford


Video Answer


1 Answers

you are passing the event to the method and not the file.

your method should look like this:

handleUpload(event) {
    const file = event.target.files[0];
    const reader = new FileReader();
    reader.readAsDataURL(file);
    reader.onload = () => {
        console.log(reader.result);
    };
}
like image 83
Ricardo Avatar answered Oct 15 '22 10:10

Ricardo