我遇到以下问题-无法从状态读取值,但出现错误:
无法读取未定义的属性“状态”
我的班级状态为
class SideNav extends Component {
state = {
brand: 'Thule'
}
handleToggle = () => this.setState({open: !this.state.open});
handleBrand = (evt) => {
this.setState({brand: evt.target.value});
console.log(this.state.brand); --> WORKS HERE!!!
}
searchProducts() {
console.log(this.state.brand); --> ERROR: cannot read 'state' property of undefined
}
render() {
return (
<div className={classes.sideNav}>
<Button variant={"outlined"} onClick={this.handleToggle} className={classes.sideNavBtn}>Search</Button>
<Drawer
className={classes.drawer}
containerStyle={{top: 55}}
docked={false}
width={200}
open={this.state.open}
onRequestChange={open => this.setState({open})}
>
<AppBar title="Search"/>
<form noValidate autoComplete="off" onSubmit={this.searchProducts}>
<TextField
id="brand"
label="Brand"
margin="normal"
onChange={this.handleBrand}
/>
<Button variant="contained" color="primary" onClick={this.searchProducts}>
Search
</Button>
</form>
</Drawer>
</div>
);
}
}
export default SideNav;
我想知道为什么我能够读取我的this.state.bran值:
handleBrand = (evt) => {
this.setState({brand: evt.target.value});
console.log(this.state.brand);
}
但不在
searchProducts() {
console.log(this.state.brand);
}
我不了解这种情况。
答案 0 :(得分:2)
searchProducts
是class method
中的bind
或使用constructor
(如arrow functions
中的handleBrand
)。当前,您为this
searchProducts = () =>{}
使用bind
constructor(){
this.searchProducts = this.searchProducts.bind(this)
}
箭头功能具有lexical this
。通过在类方法中使用this
,您将访问scope
的本地searchProducts
而不是Component
的实例
答案 1 :(得分:1)
this
在JavaScript中的confusing ways中有效。它无法像searchProduct()
中那样工作,因为您将其作为道具传递给子组件。在构造函数中,应将其绑定到实例,如下所示:
constructor(props) {
super(props);
this.searchProducts = this.searchProducts.bind(this);
}