读取给定文件的内容。
Signature:
export declare function readFile(file: File): ReadFileReader;
Parameter | Type | Description |
---|---|---|
file | File | 要读取的文件 |
Returns:
返回各种内容类型的读取器
const file = new File(['{"x":1}'], 'x.json')
const reader = readFile(file)
console.log(await reader.text()) // => '{"x":1}'
console.log(await reader.json()) // => {x: 1}