useFormikContext()

useFormikContext() 是一个自定义的 React hook,它将通过 React Context 返回所有 Formik 状态和辅助函数。

示例

这是一个表单示例,其工作方式类似于 Stripe 的双因素验证表单。只要您输入一个 6 位数字,表单就会自动提交(即不需要按 Enter 键)。

import React from 'react';
import { useFormikContext, Formik, Form, Field } from 'formik';
const AutoSubmitToken = () => {
// Grab values and submitForm from context
const { values, submitForm } = useFormikContext();
React.useEffect(() => {
// Submit the form imperatively as an effect as soon as form values.token are 6 digits long
if (values.token.length === 6) {
submitForm();
}
}, [values, submitForm]);
return null;
};
const TwoFactorVerificationForm = () => (
<div>
<h1>2-step Verification</h1>
<p>Please enter the 6 digit code sent to your device</p>
<Formik
initialValues={{ token: '' }}
validate={values => {
const errors = {};
if (values.token.length < 5) {
errors.token = 'Invalid code. Too short.';
}
return errors;
}}
onSubmit={(values, actions) => {
setTimeout(() => {
alert(JSON.stringify(values, null, 2));
actions.setSubmitting(false);
}, 1000);
}}
>
<Form>
<Field name="token" type="tel" />
<AutoSubmitToken />
</Form>
</Formik>
</div>
);

参考

useFormikContext(): FormikProps<Values>

一个自定义的 React Hook,它通过 React Context 返回 Formik 状态和辅助函数。因此,此 Hook 仅在存在可从中提取的父 Formik React Context 时才有效。如果在没有父上下文的情况下调用(即不是 <Formik> 组件或 withFormik 高阶组件的后代),您将在控制台中收到警告。

此页面是否有帮助?

订阅我们的新闻通讯

最新的 Formik 新闻、文章和资源,发送到您的收件箱。

版权所有 © 2020 Formium, Inc. 保留所有权利。