角度转换文件输入到base64

San*_*ord 9 angular

我正在尝试在我的 angular 项目中解析 base64 的文件输入。

在我的模板中,我有:

<input type="file" (change)="handleUpload($event)">
Run Code Online (Sandbox Code Playgroud)

然后我的功能是这样的:

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

这给了我这个错误:

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)
Run Code Online (Sandbox Code Playgroud)

Ric*_*rdo 21

您将事件传递给方法而不是文件。

你的方法应该是这样的:

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