In my new views page I have:
<% 10.times do %>
<%= render 'group_member_form' %>
<% end %>
Now this form contains the fields: first_name, last_name, email_address and mobile_number. Basically I want to be able to fill in the fields of all the forms in one click which then submits each into the database as a unique row/id.
What would be the easiest way to accomplish this?
Note: The number of times do is called from a variable. Any advice welcome, thanks!
You should have only one form (you should put only fields in the
group_member_formpartial). In your view you should have something like:and in
_group_member_form.html.erbyou should haveThis way, when the form submits,
params[:members]in the controller will be an array of member hashes. So, for example, to get the email adress from the fourth member after submitting the form, you callparams[:members][3][:email_adress].To understand why I wrote
_group_member_form.html.erblike this, take a glance at this:http://guides.rubyonrails.org/form_helpers.html#understanding-parameter-naming-conventions.