你能告诉我如何在响应文件选择器中获取文件名吗?
从文件选择器中选择文件后,我试图在输入字段中设置值
这是我的代码
https://stackblitz.com/edit/react-d4kp1d?file=bulk.js
我尝试过这样
<input
id="file_input_file"
className="none"
type="file"
ref={inputRef }
onChange={(e)=>{
console.log('---')
console.log(inputRef.current[0].files[0].name)
}}
/>
它给了我不确定的
最佳答案
良好的文档资料和示例摘自此处,解释了您要做什么.
https://reactjs.org/docs/uncontrolled-components.html#the-file-input-tag
原文链接:https://www.f2er.com/js/531237.htmlhttps://reactjs.org/docs/uncontrolled-components.html#the-file-input-tag
代码笔:https://codepen.io/anon/pen/LaXXJj
React.JS包含要使用的特定文件API.
以下示例显示如何创建对DOM节点的引用以访问提交处理程序中的文件:
HTML
<input type="file" />
React.JS
class FileInput extends React.Component {
constructor(props) {
super(props);
this.handleSubmit = this.handleSubmit.bind(this);
this.fileInput = React.createRef();
}
handleSubmit(event) {
event.preventDefault();
alert(
`Selected file - ${
this.fileInput.current.files[0].name
}`
);
}
render() {
return (
<form onSubmit={this.handleSubmit}>
<label>
Upload file:
<input type="file" ref={this.fileInput} />
</label>
<br />
<button type="submit">Submit</button>
</form>
);
}
}
ReactDOM.render(
<FileInput />,document.getElementById('root')
);
Alert Filename
alert(`Selected file - ${this.fileInput.current.files[0].name}`);
引用:React.JS文档| Examples