react로 form 작업할 때 자주 나타나게 되는 warning 이에요.
Warning 오류
Warning: `value` prop on `input` should not be null.
Consider using an empty string to clear the component or `undefined` for uncontrolled components.
input의 value에 null가 들어갔을 경우에 대한 처리가 없는다는 경고메시지 입니다.
before
<input type="number" name={'weight'} value={data.weight} />
after
- input의 value가 null일 때 ''가 들어올 수 있도록 함
- value={value || ' '}
<input type="number" name={'weight'} value={data.weight || ''} />
반응형
'개발 > React' 카테고리의 다른 글
[react] react 에서 jQuery 사용하기 (0) | 2022.02.15 |
---|---|
[react] npm install 설치시 npm ERR! code ERESOLVE (0) | 2022.02.14 |
[react] axios headers authorization 추가 (0) | 2022.01.20 |
[react] tailwind로 메뉴바 세팅 (0) | 2022.01.11 |
[react] 검색 기능 구현하기 (0) | 2022.01.10 |
댓글