我正在使用reactjs,在我的渲染中我有这个
<div className="file-field input-field col s12">
<div className="btn">
<span>File</span>
<input type="file" accept=".csv" onChange={ (event) => this.fileUploaded(event) }/>
</div>
<div className="file-path-wrapper">
<input className="file-path validate" type="text" placeholder="Upload A Signle csv file" />
</div>
然后我
fileUploaded(event) {
var reader = new FileReader();
}
但是在事件中我没有看到任何关于文件的内容。我错了吗?
答案 0 :(得分:0)
你需要引用具有文件列表的元素。
console.log(event.target.files)