我有以下使用Formik用React编写的表格:
import React, { FunctionComponent } from 'react';
import { NavLink } from 'react-router-dom';
import { object, string } from 'yup';
import { Formik, FormikActions, Field, FormikProps } from 'formik';
import SimpleInput from './Fields/SimpleInput';
import FieldError from './Fields/FieldError';
interface FormValues {
email: string;
password: string;
}
interface OwnProps {
onSubmit: (data: FormValues) => any;
}
const validationSchema = object().shape({
email: string()
.email('Please enter a valid email address')
.required('Email is a required field'),
password: string()
.min(8)
.required('Password is a required field'),
});
type Props = OwnProps;
const LoginForm: FunctionComponent<Props> = ({ onSubmit }) => {
const initialValues = {
email: '',
password: '',
};
const onFormSubmit = async (values: FormValues, { setSubmitting }: FormikActions<FormValues>) => {
await onSubmit(values);
setSubmitting(false);
};
return (
<Formik
onSubmit={onFormSubmit}
initialValues={initialValues}
validationSchema={validationSchema}
render={({ handleSubmit, isSubmitting }: FormikProps<FormValues>) => (
<form className="ipx-form sign" onSubmit={handleSubmit}>
<h1>Sign in</h1>
<div className="ipx-register-here">
( Don't have an account? )
<NavLink to="/register">Register here</NavLink>
</div>
<br />
<Field name="email" type="email" component={SimpleInput} label="Email Address" placeholder="Email" />
<FieldError name="email" />
<br />
<br />
<div className="fields">
<Field name="password" type="password" component={SimpleInput} label="Password" placeholder="Password" />
<FieldError name="password" />
</div>
<br />
Forgot <NavLink to="/forgot-password">password?</NavLink>
<br />
<button className="button ipx-submit-button" id="ipx-login-submit" type="submit" disabled={isSubmitting}>
<span className="ladda-label">Sign in</span>
</button>
</form>
)}
/>
);
};
export default LoginForm;
如果我单击按钮提交表单(这将分派Redux操作并登录用户),这可以很好地工作,但是当我尝试使用Return / Enter键提交表单时,它无法捕获事件。我尝试将事件记录在onSubmit
元素的<form>
属性中,但是Enter键根本不会触发任何事件。以前使用redux-form
编写了相同的表格,并且Return键功能可以正常工作。
最初,我认为这可能是由于异步表单处理所致,但我切换到常规的同步功能,但效果不佳。
任何人都经历过类似的事情,如果是,请分享所有修复程序。
谢谢!
答案 0 :(得分:0)
也许可以尝试将儿童道具与Formik结合使用,如下所示:https://jaredpalmer.com/formik/docs/api/formik#children-reactreactnode-props-formikprops-values-reactnode
并删除包裹表单的表单元素。或禁用表单的默认行为。这就是拦截输入按键行为的原因。
答案 1 :(得分:0)
我发现解决此问题的最好方法是在HTML Form Element的onKeyDown事件(称为Formik的子代)中调用handleSubmit()方法。
<Formik
initialValues={{
login: '',
senha: ''
}}
onSubmit={(values, { setErrors }) => {
this.submitSignin(values, setErrors);
}}
>
{props => {
const {
values,
handleChange,
handleBlur,
handleSubmit,
} = props;
return (
<form
onSubmit={handleSubmit}
onKeyDown={(e) => {
if (e.key === 'Enter') {
handleSubmit();
}
}}>
<input
id="login"
value={values.login}
onChange={handleChange}
onBlur={handleBlur} />
<input
id="senha"
value={values.senha}
onChange={handleChange}
onBlur={handleBlur} />
</form>
}
</Formik>
答案 2 :(得分:0)
我能够通过删除您在SimpleInput组件中应用的{...rest}
道具来解决您在Codesandbox上的问题。这增加了一些时髦的属性,这些属性似乎干扰了标准表单字段的行为。
您可以在此处看到正确的“输入时提交”行为:https://codesandbox.io/s/dark-star-r0liq
在我自己的代码中,我使用的是标准HTML <form>
而不是Formik <Form>
,因此在遇到此问题时,我必须确保我的提交按钮同时具有{{1} }属性,以及type="submit"
处理程序与Formik的onClick
方法相关。然后,“输入时提交”行为开始起作用。
handleSubmit