</> handleSubmit:
((data: Object, e?: Event) => Promise<void>, (errors: Object, e?: Event) => Promise<void>) => Promise<void>
This function will receive the form data if form validation is successful.
Props
Name | Type | Description |
---|---|---|
SubmitHandler | (data: Object, e?: Event) => Promise<void> | A successful callback. |
SubmitErrorHandler | (errors: Object, e?: Event) => Promise<void> | An error callback. |
-
You can easily submit form asynchronously with handleSubmit.
handleSubmit(onSubmit)()// You can pass an async function for asynchronous validation.handleSubmit(async (data) => await fetchAPI(data)) -
disabled
inputs will appear asundefined
values in form values. If you want to prevent users from updating an input and wish to retain the form value, you can usereadOnly
or disable the entire <fieldset />. Here is an example. -
handleSubmit
function will not swallow errors that occurred inside your onSubmit callback, so we recommend you to try and catch inside async request and handle those errors gracefully for your customers.const onSubmit = async () => {// async request which may result errortry {// await fetch()} catch (e) {// handle your error}};<form onSubmit={handleSubmit(onSubmit)} />
Examples:
Sync
import React from "react"import { useForm, SubmitHandler } from "react-hook-form"type FormValues = {firstName: stringlastName: stringemail: string}export default function App() {const { register, handleSubmit } = useForm<FormValues>()const onSubmit: SubmitHandler<FormValues> = (data) => console.log(data)return (<form onSubmit={handleSubmit(onSubmit)}><input {...register("firstName")} /><input {...register("lastName")} /><input type="email" {...register("email")} /><input type="submit" /></form>)}
Async
import React from "react";import { useForm } from "react-hook-form";const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));function App() {const { register, handleSubmit, formState: { errors }, formState } = useForm();const onSubmit = async data => {await sleep(2000);if (data.username === "bill") {alert(JSON.stringify(data));} else {alert("There is an error");}};return (<form onSubmit={handleSubmit(onSubmit)}><label htmlFor="username">User Name</label><input placeholder="Bill" {...register("username"} /><input type="submit" /></form>);}
Video
The following video tutorial explains the handleSubmit
API in detail.
Thank you for your support
If you find React Hook Form to be useful in your project, please consider to star and support it.