차근차근 생활 & 코딩

[REACT] INPUT 에러 본문

IT/오류노트

[REACT] INPUT 에러

ssilook 2021. 9. 6. 09:47
반응형

아래와 같은 에러가 콘솔로그에 발생했다.

 

에러명

Warning: A component is changing an uncontrolled input of type time to be controlled. Input elements should not switch from uncontrolled to controlled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component.

 

undefined이 되었을때 발생하는 문제라고 한다.

 

그래서 input 내에 value 값에 공백이 와도 에러가 뜨지 않도록 변경하면 됩니다.

 

해결방법

value={value|| ''}

반응형
Comments