Error

[React] Warning: You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.

귤죠아 2022. 11. 8. 16:10
반응형

에러 내용

더보기

Warning: You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.

 

에러 이유

  • input의 'value'값이 유동적으로 변하는 경우 readOnly 속성을 추가해 주거나 value를 'defaultValue'로 바꾸어 사용해야 한다.

 

해결

value 속성을 defaultValue로 바꾸어 줌

 

반응형