简体   繁体   中英

How can I show nested forms by Formik?

I've a simple form but user can fill different nested forms in parent:

在此处输入图像描述

As you see, firstname + lastname + email are fix inputs, but client is able to click on education or skills to see another form on bottom the main form and complete that. but I cant do it by something like this:

<Formik>
  <Formik>
  </Formik>
</Formik>

Because we can't add a form tag into another form tag...

I can't show nested form out of my form, because in opens between form and there are another fields after that...

Try this:

<Formik>
 (formik) => (
    <Formik name="subform">(subformik) => (
        <input name="username" {...<props>}/>)
    </Formik>)
</Formik>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM