我有一个this.state,我需要通过setState传入我的componentDidMount,如何在setState中使用bind(this)?

时间:2019-02-10 11:19:30

标签: javascript reactjs firebase firebase-realtime-database setstate

我已经通过了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'

1 个答案:

答案 0 :(得分:3)

您可以通过两种方式解决setState未定义问题

  1. 将功能更改为箭头功能

    <ul></ul>
  2. 像下面那样绑定每个功能

    componentDidMount() {
        this.database.once("value", snapshot => {
           snapshot.forEach(data => {
              this.setState({users: data.val()})
           })
        });
     }