Form being captured but data from 2 fields is not being pulled

Hi!

Site: vallvuler.netlify.app

I have a contact form that has a static version with the same fields, same name attrs.

Form is being captured in Netlify’s submission, but “name” and “surname” data is no going thru.

Form fields are being captured on build.

Any ideas? Thanks in advance.

Hiya, @pmfeo :wave:

Sorry you are having trouble getting your forms to work.

This Support Guide is the first port of call to debug any forms issues. Have you already read this and followed the suggestions? There are also many other Support Guides for forms - you can find them here: #Netlify-support:support-guides

We also recommend trying to search the forums or look at topics tagged Netlify forms if you haven’t already - it’s likely your question was already asked by someone else!

If you are still having problems, please provide the following information:

  1. The URL for your live form as you want visitors to use it
  2. The URL of your deployed html form. In case you have a javascript form, we need to literally be linked to the html version you’ve deployed, as mentioned above (look for “ pure javascript form ”)
  3. The form name that you’ve set and that shows in our UI
  4. Any errors or logs from the Netlify build logs, dashboard or browser developer console
  5. Description of anything you have tried that did or didn’t help or make things better/worse

Hi @hillary ,

Yes, I went thru the guides/docs.

I could find a solution. What I did was to match the v-model formData object key with the name attr of each form field. i.e.:

              <b-input
                id="name"
                name="name"
                type="text"
                maxlength="30"
                v-model="formData.name"
                placeholder="nombre"
                aria-label="nombre"
                aria-placeholder="nombre"
                required
              >
              </b-input>

Hope it helps if someone steps in a similar issue.

BR,

1 Like

Hey there, @pmfeo :wave:

Thanks so much for taking the time to write this out and letting us know! Sharing solutions makes the Forums great :netliconfetti: