gpt4 book ai didi

javascript - "TypeError: Cannot read property ' 状态 ' of undefined"

转载 作者:行者123 更新时间:2023-11-30 19:47:04 26 4
gpt4 key购买 nike

<分区>

我想在 reactjs 中上传一个文件,我想在控制台中显示,但是当我点击上传按钮时,它给了我

"TypeError: Cannot read property 'state' of undefined"

这是我的代码:

constructor(props) {
super(props);

this.state = {
selectedFile: null
};

this.fileSelectedHandler = this.fileSelectedHandler.bind(this);
}

fileSelectedHandler(event) {
this.setState({
selectedFile: event.target.files[0]
})
}

handleUpload() {
console.log(this.state.selectedFile)
}
render() {
return (
<div class="group">
<input type="file" name="file" id="file" onChange={this.fileSelectedHandler} />
<button onClick={this.handleUpload}> Upload </button>
</div>
)
}

我在以下位置收到错误:console.log(this.state.selectedFile)

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com