Back to React Hook Form

README.V7.Ja JP

docs/README.V7.ja-JP.md

7.75.011.6 KB
Original Source
<div align="center"> <a href="https://react-hook-form.com" title="React Hook Form - Simple React forms validation">
    </a>
</div> <div align="center"> <a href="https://react-hook-form.com" title="React Hook Form - Simple React forms validation">
    </a>
</div> <div align="center">

</div>

Version 7 | Version 6(日本語)

特徴

インストール

npm install react-hook-form

リンク集

Quickstart

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

function App() {
  const {
    register,
    handleSubmit,
    formState: { errors },
  } = useForm();
  const onSubmit = (data) => console.log(data);

  return (
    <form onSubmit={handleSubmit(onSubmit)}>
      <input {...register('firstName')} />
      <input {...register('lastName', { required: true })} />
      {errors.lastName && <p>Last name is required.</p>}
      <input {...register('age', { pattern: /\d+/ })} />
      {errors.age && <p>Please enter number for age.</p>}
      <input type="submit" />
    </form>
  );
}
<a href="https://ui.dev/bytes/?r=bill"> </a>

スポンサー

親切で素敵なスポンサー(個人/企業)に感謝します!

<a href="https://underbelly.is/" target="_blank"> </a> <a href="https://www.leniolabs.com/" target="_blank"> </a> <a href="https://graphcms.com/" target="_blank"> </a> <p> <a href="https://github.com/sayav" ></a> <a href="https://github.com/lemcii" ></a> <a href="https://github.com/washingtonsoares" ></a> <a href="https://github.com/lixunn" ></a> <a href="https://github.com/SamSamskies" ></a> <a href="https://github.com/peaonunes" ></a> <a href="https://github.com/wilhelmeek" ></a> <a href="https://github.com/iwarner" ></a> <a href="https://github.com/joejknowles" ></a> <a href="https://github.com/chris-gunawardena" ></a> <a href="https://github.com/Tymek" ></a> <a href="https://github.com/Luchanso" ></a> <a href="https://github.com/vcarel" ></a> <a href="https://github.com/gragland" ></a> <a href="https://github.com/tjshipe" ></a> <a href="https://github.com/krnlde" ></a> <a href="https://github.com/msutkowski" ></a> <a href="https://github.com/mlukaszczyk" ></a> <a href="https://github.com/susshma" ></a> <a href="https://github.com/MatiasCiccone" ></a> <a href="https://github.com/ghostwriternr" ></a> <a href="https://github.com/neighborhood999" ></a> <a href="https://github.com/yjp20" ></a> <a href="https://github.com/samantha-wong" ></a> <a href="https://github.com/msc-insure" ></a> <a href="https://github.com/ccheney" ></a> <a href="https://github.com/artischockee" ></a> <a href="https://github.com/tsongas" ></a> <a href="https://github.com/knoefel" ></a> <a href="https://github.com/JGibel" ></a> <a href="https://github.com/gpalrepo" ></a> <a href="https://github.com/pjsachdev" ></a> <a href="https://github.com/svict4" ></a> </p>

支持者(後援者)

すべての支援者(後援者)に感謝します! [支持者(後援者)になる].

<a href="https://opencollective.com/react-hook-form#backers"> </a>

組織

素晴らしい組織に感謝します! [貢献する].

<a href="https://github.com/react-hook-form/react-hook-form/graphs/contributors"> </a>

コントリビューター

素晴らしいコントリビューターに感謝します! [コントリビューターになる].

<a href="https://github.com/react-hook-form/react-hook-form/graphs/contributors"> </a>