javascript/react1 <react> TypeError: Cannot read properties of undefined (reading 'setState') 오류 해결 🤔 문제발생 필자가 react에서 setState를 사용하다가 TypeError: Cannot read properties of undefined(reading 'setState') 오류가 브라우저 콘솔창에 나타났다. 이를 해결하기 위해 bind 방법과 화살표 함수를 써야한다. 🎉 해결방법 1 class Lostpassword extends Component { constructor(props) { super(props); this.state = {number :''}; this.plus = this.plus.bind(this); } plus(){ const a = 1; const b = a + a; {this.setState({number:b})} } 첫 번째, this.setState가 있는 함수를 .. 2022. 5. 26. 이전 1 다음