在Formik中提交嵌套表单

14 浏览
0 Comments

在Formik中提交嵌套表单

我的问题是:在formik中,给定两个嵌套表单,我能否使用最外层的按钮调用两个表单的onSubmit函数?

举个例子,我有一个程序的结构如下:

component_A.tsx:

 doTheRightThing_A(values)}
>
{formik =>
        
        
}

component_B.tsx 包含以下内容:

 doTheRightThing_B(values)}
>
{formik =>
        
}

按下保存按钮,我希望同时运行doTheRightThing_A和doTheRightThing_B。谢谢!

0