无法将文件转换为Blob

时间:2017-05-03 18:21:18

标签: typescript

我试图将文件转换为Blob,但显然我甚至不能将文件作为Blob的子类。

我已经尝试过这样的话:<Blob>file而且:file as Blob。 错误总是一样的:

Type 'File' cannot be converted to type 'Blob'. Property 'size' is missing in type 'File'.

我做错了什么?

1 个答案:

答案 0 :(得分:4)

以下内容均未显示任何错误。

declare const file: File;

const blob = file as Blob;

确保您的TypeScript版本是最新的(2.3.2是撰写本文时的最新版本)

You can see this in action in the TypeScript Playground