I’m currently working on a project in WeWeb where I need to take the input from form fields and add that data to an array when the submit button is clicked. Here’s what I’ve set up:
A form with fields like Email, First Name, Last Name, Title, Phone Number, and Re-Email.
An array variable named addresses
that should hold objects with the above fields as properties.
A workflow on the form container that triggers on the Submit button click to add the form data to the addresses
array.
Issue: Despite setting up the workflow and mapping the fields, the data is not being added to the array as expected. It either shows as null
or doesn’t reflect the input values from the form fields.
What I Need: Detailed guidance or steps to ensure that the data from my form fields is correctly added to the addresses
array upon clicking the submit button.
Any advice or solutions would be greatly appreciated!