Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

경북대 FE_이은경 4주차 step3~4 #102

Open
wants to merge 17 commits into
base: dmsrud1218
Choose a base branch
from

Conversation

dmsrud1218
Copy link

4주차 질문

    1. 제어 컴포넌트와 비제어 컴포넌트의 차이가 무엇이고 제어 컴포넌트로 Form을 만들어야 하는 경우가 있다면 어떤 경우인지 예시와 함께 설명해주세요.
  • 제어 컴포넌트 (Controlled Component)
    제어 컴포넌트는 React 컴포넌트의 상태(state)가 폼 요소의 값을 관리합니다. 폼 요소의 값이 컴포넌트의 상태에 의해 제어됩니다.

예시로는
폼 데이터를 실시간으로 검증하거나 포맷팅해야 할 때
폼 요소의 값에 따라 동적으로 UI를 변경해야 할 때
폼 제출 전에 데이터를 가공하거나 확인해야 할 때

  • 비제어 컴포넌트 (Uncontrolled Component)
    이 경우는 폼 요소가 자체적으로 상태를 관리합니다. React의 ref를 사용하여 DOM 요소에 직접 접근하여 값을 가져옵니다.

    1. input type의 종류와 각각 어떤 특징을 가지고 있는지 설명해 주세요.
      text : 텍스트 입력
      password: 입력된 텍스트가 보이지 않도록 마스킹
      tel: 전화번호 입력. 전화번호 형식의 검증은 없지만, 모바일 기기에서는 전화번호 키패드가 표시됨.
      hidden: 사용자에게 보이지 않는 숨겨진 입력. 폼 데이터에 포함됨
    1. label tag는 어떤 역할을 하며 label로 input field를 감싸면 어떻게 동작하는지 설명해 주세요.
      label 태그는 HTML 폼에서 input, textarea 등의 폼 요소에 대한 설명을 제공하는 역할을 합니다. 사용자가 입력 필드를 쉽게 이해하고 접근할 수 있도록 돕습니다.
      for 속성 사용: label 태그의 for 속성이 입력 필드의 id 속성과 일치하면, label을 클릭할 때 해당 입력 필드가 포커스를 받습니다.
      입력 필드를 감쌈: label 태그가 입력 필드를 감싸고 있으면, label의 어느 부분을 클릭해도 내부의 입력 필드가 포커스를 받습니다.

step3 과제를 하면서 2처럼 alert로 나타나도록 했지만 계속 나오지 않아서 애를 먹었는데.. react-hook-form의 validation이 우선적으로 작동되어서 handleSubmit 함수가 작동되기 전에 유효성검사를 해서 onSubmit함수가 호출되지 않는 것이 맞는지 질문드립니다!
감사합니다!

@sjoleee sjoleee changed the base branch from main to dmsrud1218 July 20, 2024 15:06
Copy link

@sjoleee sjoleee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다~!

alert이 안나오는건... 아마 메시지를 required로 해두셔서 그런 것 같은데 minLength로 변경해 보실래요?
required때문에 메시지가 비어있으면 handleSubmit 자체가 동작하지 않아요~
문서를 꼼꼼하게 읽어보시면 좋을 것 같습니다 ㅎㅎ
도구를 사용할때는 설명서를 꼭 읽고 사용합시다...!

Comment on lines +49 to +53
- 2. input type의 종류와 각각 어떤 특징을 가지고 있는지 설명해 주세요.
text : 텍스트 입력
password: 입력된 텍스트가 보이지 않도록 마스킹
tel: 전화번호 입력. 전화번호 형식의 검증은 없지만, 모바일 기기에서는 전화번호 키패드가 표시됨.
hidden: 사용자에게 보이지 않는 숨겨진 입력. 폼 데이터에 포함됨
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

input의 type은 훨씬 많습니다 ㅎㅎ 개인적으로는 작성해주신 것들보다 radio, file, range, checkbox를 자주 쓰는 것 같아요

Comment on lines +33 to +48
if (data.cashReceipt && !data.cashReceiptNumber) {
alert('현금영수증 번호를 입력해주세요!');
return;
}
if (!data.message) {
alert('카드 메시지를 입력해주세요!');
return;
}
if (data.message.length > 100) {
alert('카드 메시지는 100자 이내로 입력해주세요!');
return;
}
if (data.cashReceiptNumber && !/^\d*$/.test(data.cashReceiptNumber)) {
alert('현금 영수증 번호는 숫자만 입력해주세요!');
return;
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

handleSubmit의 첫번째 인자는 성공시 동작할 함수, 두번째 인자는 실패시 동작할 함수입니다.
validation을 통과하지 못한 경우는 두 번째 인자로 넘겨보시면 좋을 것 같아요~

Comment on lines +116 to +121
{...register('cashReceiptNumber', {
pattern: {
value: /^\d*$/,
message: '현금 영수증 번호는 숫자만 입력해주세요!',
},
})}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아무것도 입력하지 않아도 통과하네요!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants