카테고리 없음

콘솔에러

동기는 2020. 10. 5. 16:08

Warning: Failed prop type: 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`

 

value 가 변하지 않는 값이면  <input readOnly/>

 

value 가 변하는 값이면 <input defaultValue={value1 ? value1 : ' false 일때 !'}>

 

이렇게 하면 경고가 사라진다