You provided a
checked
prop to a form field without anonChange
handler. This will render a read-only field. If the field should be mutable usedefaultChecked
. Otherwise, set eitheronChange
orreadOnly
.
onChange
핸들러가 없는 양식 필드에checked
프로퍼티를 전달하면 읽기 전용(readOnly) 필드가 렌더링됩니다. 필드를 변경할 수 있어야 하는 경우defaultChecked
를 사용합니다.
다른 방법으로는onChange
또는readOnly
를 설정합니다.
Checkbox
contains an input of type checkbox with both checked and defaultChecked props.
Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both).
Decide between using a controlled or uncontrolled input element and remove one of these props.
둘 중 하나만 선택하시오. 둘 다 쓰기 금지!
React does not recognize the
useToggle
prop on a DOM element.
If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercaseusetoggle
instead.
If you accidentally passed it from a parent component, remove it from the DOM element.
리액트는 DOM 엘리먼트에useToggle
prop 을 적용하지 못한다. 커스텀 속성으로 DOM에 적용되길 원한다면 소문자로 고치고 잘못 내린거면 지우세요.
Received
true
for a non-boolean attributetoggle
.
If you want to write it to the DOM, pass a string instead: toggle="true" or toggle={value.toString()}.
boolean
속성이 아닌데true
를 받다니.. DOM에서 사용하고 싶다면 문자열 리터럴로 내리세요.
defaultProps