[REACTJS] this.state.myvar와 동기화 ReactJS this.setState ()
REACTJSthis.state.myvar와 동기화 ReactJS this.setState ()
해결법
-
1.setState를 실제로 상태 업데이트를 큐. 당신이 그것을 실제로 실행 있어요 후에 뭔가를하고 싶은 경우에, 당신은 두 번째 인수로 콜백을 전달할 수 있습니다.
setState를 실제로 상태 업데이트를 큐. 당신이 그것을 실제로 실행 있어요 후에 뭔가를하고 싶은 경우에, 당신은 두 번째 인수로 콜백을 전달할 수 있습니다.
updatePartyCategory: function(value) { this.setState({b_MyPartyCat: value}, function(){ console.log(this.state.value === value); // true }.bind(this)); },
from https://stackoverflow.com/questions/25172850/reactjs-this-setstate-out-of-sync-with-this-state-myvar by cc-by-sa and MIT license
'REACTJS' 카테고리의 다른 글
[REACTJS] 조언이 필요 : 어떻게 제대로 MongoDB의 반응 연결 (0) | 2020.11.11 |
---|---|
[REACTJS] 합니까는 사용 requestAnimationFrame 반응? 그렇다면, 어떻게 그것을 사용합니까? (0) | 2020.11.11 |
[REACTJS] React.js 어떻게 자식 구성 요소에 대한 콜백을 전달하는 방법? (0) | 2020.11.11 |
[REACTJS] 반응 라우터 : 실행은 함수가 아닙니다 (0) | 2020.11.11 |
[REACTJS] 구성 요소의 온 클릭 이벤트를 반응 (0) | 2020.11.11 |