I've been following the "Agile Web Development with Rails" book
shopping cart tutorial, and I've been trying to modify the checkout so
it lets me modify the quantity of items on checkout, so far I've added
a new action on the controler cart_checkout wich has the following
view:
<% @items.each do |item| %>
<p>
<%=h item.product.name%>
<%= text_field_tag item, item.quantity, { :size => 2, :maxlength
=> 3 } %>
</p>
<% end %>
<%= f.submit("Buy") %>
<% end %>
It displays a text field with the quantity, but when I try to read the
form on the controler, I don't know how to access each item and relate
it to its correspondig cart item in order to modify the quantity. Can
anyone point me in the right direction?.
I think you want to use the fields_for helper so rails will give you an array of form params to hold the various items. You should also probably include a hidden text field in there to hold the id of each item so you know which quantity should go w/which item.
I think you want to use the fields_for helper so rails will give you
an array of form params to hold the various items. You should also
probably include a hidden text field in there to hold the id of each
item so you know which quantity should go w/which item.
Actually you shouldn't need a hidden field. I'm adapting this example
from something slightly different (my Item objects have a description
field, rather than quantity), but here's what I've got:
<% @items.each do |item| %>
<% fields_for "items", item do |ff| %>
<p>Description: <%= ff.text_field :description %></p>
<% end %>
<% end %>
and here's what's submitted to the controller in params:
{"items"=>{"345698069"=>{"description"=>"third item"},
"345698067"=>{"description"=>"first item"},
"345698068"=>{"description"=>"second item"}},
"commit"=>"Buy",
etc. }
So now I can iterate through that hash, getting the id number and a
hash of attributes each time.