56

当前行为

<Formik
    isInitialValid
    initialValues={{ first_name: 'Test', email: 'test@mail.com' }}
    validate={validate}
    ref={node => (this.form = node)}
    onSubmitCallback={this.onSubmitCallback}
    render={formProps => {
        const fieldProps = { formProps, margin: 'normal', fullWidth: true, };
        const {values} = formProps;
        return (
            <Fragment>
                <form noValidate>
                    <TextField
                        {...fieldProps}
                        required
                        autoFocus
                        value={values.first_name}
                        type="text"
                        name="first_name"

                    />

                    <TextField
                        {...fieldProps}
                        name="last_name"
                        type="text"
                    />

                    <TextField
                        {...fieldProps}
                        required
                        name="email"
                        type="email"
                        value={values.email}

                    />
                </form>
                <Button onClick={this.onClick}>Login</Button>
            </Fragment>
        );
    }}
/>

我正在尝试这个解决方案https://github.com/jaredpalmer/formik/issues/73#issuecomment-317169770但它总是返回我Uncaught TypeError: _this.props.onSubmit is not a function

当我试图console.log(this.form)submitForm功能时。

大佬们有什么解决办法吗?


- Formik 版本:最新 - React 版本:v16 - 操作系统:Mac OS

4

10 回答 10

83

只是对于任何想知道通过 React hooks 的解决方案是什么的人:

Formik 2.x,如this answer中所述

// import this in the related component
import { useFormikContext } from 'formik';

// Then inside the component body
const { submitForm } = useFormikContext();

const handleSubmit = () => {
  submitForm();
}

请记住,该解决方案仅适用于Formik 组件内的组件,因为它使用上下文 API。如果由于某种原因您想从外部组件或实际使用 Formik 的组件手动提交,您实际上仍然可以使用该innerRef道具。

TLDR ; 如果您提交的组件是 a <Formik>orwithFormik()组件的子组件,则此上下文答案就像一个魅力,否则,请使用innerRef下面的答案。

Formik 1.5.x+

// Attach this to your <Formik>
const formRef = useRef()

const handleSubmit = () => {
  if (formRef.current) {
    formRef.current.handleSubmit()
  }
}

// Render
<Formik innerRef={formRef} />
于 2019-10-03T16:58:52.683 回答
40

您可以将formikProps.submitForm(Formik 的程序化提交)绑定到父组件,然后从父组件触发提交:

import React from 'react';
import { Formik } from 'formik';

class MyForm extends React.Component {
    render() {
        const { bindSubmitForm } = this.props;
        return (
            <Formik
                initialValues={{ a: '' }}
                onSubmit={(values, { setSubmitting }) => {
                    console.log({ values });
                    setSubmitting(false);
                }}
            >
                {(formikProps) => {
                    const { values, handleChange, handleBlur, handleSubmit } = formikProps;

                    // bind the submission handler remotely
                    bindSubmitForm(formikProps.submitForm);

                    return (
                        <form noValidate onSubmit={handleSubmit}>
                            <input type="text" name="a" value={values.a} onChange={handleChange} onBlur={handleBlur} />
                        </form>
                    )
                }}
            </Formik>
        )
    }
}

class MyApp extends React.Component {

    // will hold access to formikProps.submitForm, to trigger form submission outside of the form
    submitMyForm = null;

    handleSubmitMyForm = (e) => {
        if (this.submitMyForm) {
            this.submitMyForm(e);
        }
    };
    bindSubmitForm = (submitForm) => {
        this.submitMyForm = submitForm;
    };
    render() {
        return (
            <div>
                <button onClick={this.handleSubmitMyForm}>Submit from outside</button>
                <MyForm bindSubmitForm={this.bindSubmitForm} />
            </div>
        )
    }
}

export default MyApp;
于 2018-11-19T23:05:27.933 回答
15

我发现的最佳解决方案在此处描述https://stackoverflow.com/a/53573760

在此处复制答案:

在表单中添加“id”属性:id='my-form'

class CustomForm extends Component {
    render() {
        return (
             <form id='my-form' onSubmit={alert('Form submitted!')}>
                // Form Inputs go here    
             </form>
        );
    }
}

然后在表单外的目标按钮的“form”属性中添加相同的Id:

<button form='my-form' type="submit">Outside Button</button>

现在,“外部按钮”按钮将完全等同于它在表单内部。

注意:IE11 不支持此功能。

于 2020-12-28T13:43:13.483 回答
11

我刚刚遇到了同样的问题,并找到了一个非常简单的解决方案,希望这会有所帮助:

这个问题可以用 plain 解决html。如果您id在您的标签上放置标签,form则可以使用按钮的form标签将其定位到您的按钮。

例子:

      <button type="submit" form="form1">
        Save
      </button>
      <form onSubmit={handleSubmit} id="form1">
           ....
      </form>

您可以将表单和按钮放置在任何地方,甚至可以分开放置。

然后,此按钮将触发表单提交功能,formik 将像往常一样捕获该过程。(只要在呈现按钮时在屏幕上呈现表单,那么无论表单和按钮位于何处,这都将起作用)

于 2021-04-08T14:29:29.347 回答
4

如果您将您的类组件转换为功能组件,自定义钩子useFormikContext提供了一种在树的任何位置使用提交的方法:

   const { values, submitForm } = useFormikContext();

PS:这仅适用于那些不需要在Formik组件外部调用 submit 的人,因此您可以将Formik组件放在组件树中的更高级别,而不是使用 ref,并使用自定义钩子useFormikContext,但如果真的需要从外部提交,Formik您必须使用useRef .

<Formik innerRef={formikRef} />

https://formik.org/docs/api/useFormikContext

于 2020-07-05T02:57:37.780 回答
3

在 2021 年,使用 16.13.1,这种方式对我来说满足了几个要求:

  • 提交/重置按钮不能嵌套在<Formik>元素中。注意,如果你能做到这一点,那么你应该使用useFormikContext答案,因为它比我的简单。(我的将允许您更改要提交的表单(我有一个应用栏,但用户可以导航到多个表单)。
  • 外部提交/重置按钮必须能够提交和重置 Formik 表单。
  • 外部提交/重置按钮必须显示为禁用,直到表单变脏(外部组件必须能够观察 Formik 表单的dirty状态。)

这是我想出的:我创建了一个新的上下文提供程序,专门用于保存一些有用的 Formik 东西来链接我在应用程序不同嵌套分支中的两个外部组件(全局应用程序栏和其他地方的表单,在页面更深处视图——事实上,我需要提交/重置按钮来适应用户导航到的不同表单,而不仅仅是一个;不仅仅是一个<Formik>元素,而是一次只有一个)。

以下示例使用 TypeScript,但如果您只知道 javascript,则忽略冒号后的内容,在 JS 中也是如此。

你在你的应用程序中放置<FormContextProvider>的足够高,它包含了需要访问 Formik 东西的两个不同的组件。简化示例:

<FormContextProvider>
  <MyAppBar />
  <MyPageWithAForm />
</FormContextProvider>

这是 FormContextProvider:

import React, { MutableRefObject, useRef, useState } from 'react'
import { FormikProps, FormikValues } from 'formik'

export interface ContextProps {
  formikFormRef: MutableRefObject<FormikProps<FormikValues>>
  forceUpdate: () => void
}

/**
 * Used to connect up buttons in the AppBar to a Formik form elsewhere in the app
 */
export const FormContext = React.createContext<Partial<ContextProps>>({})

// https://github.com/deeppatel234/react-context-devtool
FormContext.displayName = 'FormContext'

interface ProviderProps {}

export const FormContextProvider: React.FC<ProviderProps> = ({ children }) => {
  // Note, can't add specific TS form values to useRef here because the form will change from page to page.
  const formikFormRef = useRef<FormikProps<FormikValues>>(null)
  const [refresher, setRefresher] = useState<number>(0)

  const store: ContextProps = {
    formikFormRef,
    // workaround to allow components to observe the ref changes like formikFormRef.current.dirty
    forceUpdate: () => setRefresher(refresher + 1),
  }

  return <FormContext.Provider value={store}>{children}</FormContext.Provider>
}

在呈现<Formik>元素的组件中,我添加了这一行:

const { formikFormRef } = useContext(FormContext)

在同一个组件中,我将此属性添加到<Formik>元素:

innerRef={formikFormRef}

在同一个组件中,嵌套在<Formik>元素下的第一件事就是 this(重要的是,注意添加的<FormContextRefreshConduit />行)。

<Formik
  innerRef={formikFormRef}
  initialValues={initialValues}
  ...
>
  {({ submitForm, isSubmitting, initialValues, values, setErrors, errors, resetForm, dirty }) => (
    <Form>
      <FormContextRefreshConduit />
      ...

在包含提交/重置按钮的组件中,我有以下内容。注意使用formikFormRef

export const MyAppBar: React.FC<Props> = ({}) => {
  const { formikFormRef } = useContext(FormContext)
  
  const dirty = formikFormRef.current?.dirty

  return (
    <>
      <AppButton
        onClick={formikFormRef.current?.resetForm}
        disabled={!dirty}
      >
        Revert
      </AppButton>
      <AppButton
        onClick={formikFormRef.current?.submitForm}
        disabled={!dirty}
      >
        Save
      </AppButton>
    </>
  )
}

ref对于调用 Formik 方法很有用,但通常无法观察到它的dirty属性(react 不会为此更改触发重新渲染)。FormContextRefreshConduit一起forceUpdate是一个可行的解决方法。

谢谢,我从其他答案中汲取灵感,找到了满足我自己所有要求的方法。

于 2021-08-17T00:52:56.080 回答
1

如果您使用 withFormik,这对我有用:

  const handleSubmitThroughRef = () => {
    newFormRef.current.dispatchEvent(
      new Event("submit", { cancelable: true, bubbles: true })
    );
  };

只需在您的表单上放置一个常规的 react ref:

  <form
        ref={newFormRef}
        
        onSubmit={handleSubmit}
      >
于 2021-03-24T11:03:34.347 回答
0

另一种简单的方法是 useState 并将 prop 传递给子 formik 组件。在那里,您可以使用 useEffect 钩子设置状态。

const ParentComponent = () => {
  const [submitFunc, setSubmitFunc] = useState()
  return <ChildComponent setSubmitFunc={setSubmitFunc}>
}

const ChildComponent= ({ handleSubmit, setSubmitFunc }) => {
   useEffect(() => {
     if (handleSubmit) setSubmitFunc(() => handleSubmit)
   }, [handleSubmit, setSubmitFunc])

   return <></>
 }
于 2021-10-12T12:10:31.060 回答
0

你可以试试

const submitForm = ({ values, setSubmitting }) =>{//...在这里做点什么}

<Formik onSubmit={(values, {setSubmitting })=> submitForm({values, setSubmitting})> {()=>(//...在这里做点什么)}

于 2021-06-05T04:40:40.040 回答
0

找到了罪魁祸首。

onSubmitCallbackFormik 道具上不再有。应该改成onSubmit

于 2018-03-28T05:12:04.373 回答