我已经通过了setState中的绑定,该怎么办? enter image description here
TypeError:无法读取未定义的属性'setState'
我正在使用RealTime Firebase和ReactJs
constructor() {
super()
this.app = firebase.initializeApp(firebase_config);
this.database = this.app.database().ref().child('users');
this.state = {
users: []
}
}
componentDidMount() {
this.database.once("value", function(snapshot) {
snapshot.forEach(function(data) {
this.setState({users: data.val()})
})
});
}
render() {
return (
<BrowserRouter>
<div className="App">
<Navbar/>
<Switch>
<Route exact="exact" path='/' component={CampaingListClients}/>
</Switch>
<p>{this.state.users}</p>
</div>
</BrowserRouter>);
}
}
TypeError:无法读取未定义的属性'setState'
答案 0 :(得分:3)
您可以通过两种方式解决setState未定义问题
将功能更改为箭头功能
<ul></ul>
像下面那样绑定每个功能
componentDidMount() {
this.database.once("value", snapshot => {
snapshot.forEach(data => {
this.setState({users: data.val()})
})
});
}