복붙노트

[REACTJS] 이 결합 후가 아닌 함수와 setState

REACTJS

이 결합 후가 아닌 함수와 setState

해결법


  1. 1.this.setState 후 추가 =이있다. 받는 다음 변경

    this.setState 후 추가 =이있다. 받는 다음 변경

     this.props.createPostRequest(this.state).then(
            () => {
    
                this.setState({
                    postBody : ""
                });
            }
        )
    
  2. from https://stackoverflow.com/questions/45130388/setstate-not-a-function-after-binding-this by cc-by-sa and MIT license