Phases of Form Submission with Formik
Learn about the different phases of form submission using Formik.
We'll cover the following
Implementing form submission
To submit a form we created with Formik, we’ll pass the formik.handleSubmit
method to the onSubmit
event of the form tag.
How will Formik know our form submission logic? We’ll pass an onSubmit
function to the useFormik
hook. This function has a parameter called values
, which is an object that contains the fields in our form represented by their names and their corresponding values, which are the same as the formik.values
object. We’ll write our form submission logic in this function.
Get hands-on with 1400+ tech skills courses.