错误:键入'{children:Element []; }'与类型'IntrinsicAttributes&RefAttributes <HTMLFormElement>'

时间:2019-10-26 12:30:44

标签: reactjs forms typescript formik

我正在尝试在我的React应用程序中使用Formik。我有用ts编写的登录组件。由于某些原因,Form中的Formik元素会引发以下错误:

  

错误TS2559(TS)类型'{children:Element []; }'在中没有属性   类型'IntrinsicAttributes和   RefAttributes”。

我想知道如何减轻这个问题。有解决方案吗?

 <div>
            <Form></Form> // NO ERROR
            <h4>Login</h4>
            <Formik
                initialValues={{
                    username: '',
                    password: ''
                }}
                validationSchema={Yup.object().shape({
                    username: Yup.string().required('Username is required'),
                    password: Yup.string().required('Password is required')
                })}
                onSubmit={({ username, password }, { setStatus, setSubmitting }) => {
                    setStatus();
                    authenticationService.login(username, password)
                        .then(
                            result => {
                                console.log(result);
                                console.log(typeof result);

                                if (result.status == '500') {
                                    setSubmitting(false);
                                    setStatus("Login failed.");

                                } else if (result.status == '200') {
                                    if (result.data["roles"].result.includes('Admin'))
                                        history.push('/admin/courses');

                                    history.push('/courses');
                                }
                            },
                            error => {
                                setSubmitting(false);
                                setStatus(error);
                            }
                        );
                }}
                render={({ errors, status, touched, isSubmitting }) => (
                    <Form> // ERROR!!!
                        <div className="form-group">
                            <label htmlFor="username">Username</label>
                            <Field name="username" type="text" className={'form-control' + (errors.username && touched.username ? ' is-invalid' : '')} />
                            <ErrorMessage name="username" component="div" className="invalid-feedback" />
                        </div>
                        <div className="form-group">
                            <label htmlFor="password">Password</label>
                            <Field name="password" type="password" className={'form-control' + (errors.password && touched.password ? ' is-invalid' : '')} />
                            <ErrorMessage name="password" component="div" className="invalid-feedback" />
                        </div>
                        <div className="form-group">
                            <button type="submit" className="btn btn-primary" disabled={isSubmitting}>Login</button>
                            {isSubmitting && <LoadingSpinner />}
                        </div>
                        {
                            status &&
                            <div className={'alert alert-danger'}>Login failed.</div>
                        }
                    </Form>
                )}
            />

            />

        </div>

2 个答案:

答案 0 :(得分:2)

这似乎是formik v2(21小时前发布)的一个问题,我在全新CRA的formik安装中也遇到了同样的问题,并且似乎遗漏了允许<Form />有孩子的类型。

我建议暂时降级到v1.5.8,我可以确认这可以解决您的问题。

使用formik时,我还建议传入值类型,这些值类型非常容易提供很多类型安全性。您可以将type Values = { username: string, password: string }添加到文件顶部,并将其传递到Formik的{​​{1}}组件中

答案 1 :(得分:1)

对于其他坚持这一点的人来说,至少从Formik v2.0.11及更高版本开始,似乎仍然是一个问题。

我的特殊问题是将withFormik HOC与Formik的<Form>组件一起使用,例如:


    const MyForm = (props: Props) => {
        const { things, from, the, hoc } = props;
        // some logic
        return (
            <Form>
              <MyCustomFormElements /> 
            </Form
        );
    }
    
    const FormikForm = withFormik({
      mapPropsToValues: (props: OwnProps): OwnForm => {
        return {
          some: 'custom',
          values: 'and things'
        };
      },
      handleSubmit: (values, { props, setSubmitting }) => {
        props.handleSubmit(values, setSubmitting);
      },
      enableReinitialize: true,
      validateOnBlur: true,
      validateOnChange: true,
      validationSchema: (props: OwnProps) => formSchema(props.t),
    })(MyForm);
    
    export default FormikForm;

我在这里查看了withFormik HOC的官方示例:

并注意到,即使在示例中,他们也没有使用自己的<Form />组件。解决方法是用这样的标准html <Form />替换<form>(并记住将handleSubmit道具传递给<form>,这显然是Formik的<Form />无法做到的在这种情况下):


    const MyForm = (props: Props) => {
        // notice the explicit use of handleSubmit!!
        const { things, from, the, hoc, handleSubmit } = props;
        // some logic
        return (
            <form onSubmit={handleSubmit}>
              <MyCustomFormElements /> 
            </form>
        );
    }
    
    const FormikForm = withFormik({
      mapPropsToValues: (props: OwnProps): OwnForm => {
        return {
          some: 'custom',
          values: 'and things'
        };
      },
      handleSubmit: (values, { props, setSubmitting }) => {
        props.handleSubmit(values, setSubmitting);
      },
      enableReinitialize: true,
      validateOnBlur: true,
      validateOnChange: true,
      validationSchema: (props: OwnProps) => formSchema(props.t),
    })(MyForm);
    
    export default FormikForm;