</> ErrorMessage:
컴포넌트
입력 필드와 연결된 오류 메시지를 렌더링하는 간단한 컴포넌트입니다.
npm install @hookform/error-message
Props
이름 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
name | string | ✓ | 필드의 이름. |
errors | object | React Hook Form의 errors 객체. FormProvider 를 사용하는 경우 선택 사항. | |
message | string | React.ReactElement | 인라인 오류 메시지. | |
as | React.ElementType | string | 래퍼 컴포넌트 또는 HTML 태그. 예: as="span" 또는 as={<Text />} | |
render | ({ message: string | React.ReactElement, messages?: Object}) => any | 오류 메시지 또는 메시지를 렌더링하기 위한 렌더 프로퍼티. 참고: messages 를 사용하려면 criteriaMode 를 'all'로 설정해야 함. |
예제:
단일 오류 메시지
import React from "react"import { useForm } from "react-hook-form"import { ErrorMessage } from "@hookform/error-message"interface FormInputs {singleErrorInput: string}export default function App() {const {register,formState: { errors },handleSubmit,} = useForm<FormInputs>()const onSubmit = (data: FormInputs) => console.log(data)return (<form onSubmit={handleSubmit(onSubmit)}><input{...register("singleErrorInput", { required: "This is required." })}/><ErrorMessage errors={errors} name="singleErrorInput" /><ErrorMessageerrors={errors}name="singleErrorInput"render={({ message }) => <p>{message}</p>}/><input type="submit" /></form>)}
다중 오류 메시지
import React from "react"import { useForm } from "react-hook-form"import { ErrorMessage } from "@hookform/error-message"interface FormInputs {multipleErrorInput: string}export default function App() {const {register,formState: { errors },handleSubmit,} = useForm<FormInputs>({criteriaMode: "all",})const onSubmit = (data: FormInputs) => console.log(data)return (<form onSubmit={handleSubmit(onSubmit)}><input{...register("multipleErrorInput", {required: "This is required.",pattern: {value: /d+/,message: "This input is number only.",},maxLength: {value: 10,message: "This input exceed maxLength.",},})}/><ErrorMessageerrors={errors}name="multipleErrorInput"render={({ messages }) =>messages &&Object.entries(messages).map(([type, message]) => (<p key={type}>{message}</p>))}/><input type="submit" /></form>)}
여러분의 지원에 감사드립니다
React Hook Form이 프로젝트에서 유용하다면, GitHub에서 스타를 눌러 지원해 주세요.