Skip to content

Latest commit

 

History

History
106 lines (80 loc) · 4.89 KB

README.ko-KR.md

File metadata and controls

106 lines (80 loc) · 4.89 KB

유연하고 확장 가능한 사용하기 쉬운 고성능 폼 검증 라이브러리

npm downloads npm npm Coverage Status

Tweet Join the community on Spectrum

English | 繁中 | 简中 | 日本語 | 한국어 | Français | Italiano | Português | Español | Русский | Deutsch | Türkçe

특징

  • 성능과 DX를 기반으로 구축
  • 제어되지 않는 양식 검증
  • 제어 된 양식의 성능을 향상시킵니다
  • 의존성 없는 작은 용량
  • HTML 표준을 따르는 검증
  • React Native 와 호환
  • Yup, Joi, Superstruct 또는 custom 지원
  • 브라우저 네이티브 검증 지원
  • Form Builder로 폼 빠르게 생성

설치

$ npm install react-hook-form

링크

시작하기

import React from 'react';
import { useForm } from 'react-hook-form';

function App() {
  const { register, handleSubmit, errors } = useForm(); // initialise the hook
  const onSubmit = (data) => {
    console.log(data);
  };

  return (
    <form onSubmit={handleSubmit(onSubmit)}>
      <input name="firstname" ref={register} /> {/* register an input */}
      <input name="lastname" ref={register({ required: true })} />
      {errors.lastname && 'Last name is required.'}
      <input name="age" ref={register({ pattern: /\d+/ })} />
      {errors.age && 'Please enter number for age.'}
      <input type="submit" />
    </form>
  );
}

기여자

모든 기여자 분들께 감사합니다! [기여하기]

조직

이 훌륭한 조직에 감사드립니다! [기증하다]

후원자

모든 후원자 분들께 감사합니다! [후원하기]