반응형
에러 메시지
The above error occurred in the <input> component:
React will try to recreate this component tree from scratch using the error boundary you provided, ErrorBoundary.
에러 발생 코드
에러 이유
- input 태그는 닫는 태그 없이 사용해댜 한다.
- 즉, input 태그는 self-closing 태그이다.
코드 수정
- input의 value 속성으로 값을 넣는다.
=> input 필드가 data.nickname 값으로 초기화되고,
=> 값이 update 될 때마다 input 필드의 값도 자동으로 업데이트 된다.
반응형
'기능 공유 및 에러핸들링' 카테고리의 다른 글
별도의 아이콘 컴포넌트로 분리하기 (0) | 2024.10.17 |
---|---|
[Error] Rendered more hooks than during the previous render. (0) | 2024.08.24 |
[Error]이 Promise<any>는 항상 정의되어 있으므로 이 조건은 항상 true를 반환합니다. (0) | 2024.07.16 |
새로고침 없이 찜 상태 즉시 반영하기 (react-query 활용) (0) | 2024.06.17 |
Next.js에서 Google Fonts 적용 방법 뽀개기 (0) | 2024.06.11 |