How can I pass a parameter along with f.submit?
I have a for开发者_如何学编程m for creating a new user. I'd like to pass a paramater, page, with f.submit, something like:
<%= f.submit (:cove_id=>@cove)%>
Is this possible in Rails?
put the parameter inside the form, not in the submit button (for example, use a hidden_field
to do that)
Also, if cove_id is a foreign key on a parent model (ie: your form model belongs_to cove), consider going the nested resources route.
http://guides.rubyonrails.org/routing.html#nested-resources
精彩评论