전체 글 (96) 썸네일형 리스트형 [REACT] (SingleDatePicker) Warning: Failed prop type: Invalid prop `date` of typ Warning: Failed prop type: Invalid prop `date` of type `object` supplied to `withStyles(SingleDatePicker)`, expected `Moment`. at withStyles(SingleDatePicker) (eval at ES6ProxyComponentFactory → 데이터에 null값이 들어가서 생긴 이슈 date={this.state.date && !this.state.date == false ? this.state.date : null} date에 들어갈 값을 예외처리 이중으로 해줌. (※ !this.state.date == false !(값) == false 값이 존재함 = null, ' ', undefined값을 같.. [REACT] getDerivedStateFromProps - Cannot read properties of undefined (reading 'setState') getDerivedStateFromProps - render이전 그리기 직전에 호출 정적 메서드 이기 떄문에 this.setState 를 사용할 경우 "Cannot read properties of undefined (reading 'setState')" 이와 같은 에러가 발생한다. 대신 return 값을 이용해서 state값을 변경시키면 된다. static getDerivedStateFromProps(nextProps, prevState) { if (nextProps.value !== prevState.value) { //값이 다를경우 console.log("로그") //prevState 의 상태값을 return으로 변경 return { value : "변경할 값"} return null; // 아무것.. yarn install 안될경우 yarn install 설치시 에러날 때 체크항목 1. cmd모드로 본인 경로로 들어가서 yarn install 진행 2. 관리자 cmd모드로 본인경로로 들어가서 yarn install 진행 3. powershell 로 들어가서 실행 이전 1 ··· 16 17 18 19 20 21 22 ··· 32 다음