我正在“重新激活”一个文件输入,但无法遍历选定的文件。
private onInputChanged = (e: React.FormEvent<HTMLInputElement>): void => {
let files: FileList | null = e.currentTarget.files;
files.map( file => console.log("Do something with " + file.name));
}
<input
type="file"
onChange={this.onInputChanged}
/>
这是我的问题的一个准系统示例。FileList 不能与 .map(... 一起使用,也不能与 .forEach(...
如何完成选定文件的迭代?
错误:类型“FileList”上不存在属性“map”