RESTful way to use form_for? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T06:15:01Zhttp://stackoverflow.com/feeds/question/787869http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/787869/restful-way-to-use-formfor0RESTful way to use form_for?thaiyoshi2009-04-24T23:52:12Z2009-06-19T01:00:03Z
<p>I am attempting to use form_for to implement a search form that works with a table-less Search model I created. The search form keeps triggering the 'index' action. I assume I should use 'new' to create the form and 'create' the process the search query. Looking at the log, my POST is getting changed into a GET. Here's my code:</p>
<p>/searches/new.html.erb:</p>
<pre><code><% form_for :searches, @search, :url => searches_path, :html => {:method => :post} do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :keywords %><br />
<%= f.text_field :keywords %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
</code></pre>
<p>What's the standard way for triggering the 'create' action with form_for?</p>
http://stackoverflow.com/questions/787869/restful-way-to-use-formfor/789245#7892450Answer by andi for RESTful way to use form_for?andi2009-04-25T16:15:54Z2009-04-25T16:15:54Z<p>Are you using the RESTful <code>map.resources :searches</code> ?
<br />If so, shouldn't your <code>:url</code> be set to <code>new_search_path</code> ?</p>
http://stackoverflow.com/questions/787869/restful-way-to-use-formfor/792517#7925170Answer by August Lilleaas for RESTful way to use form_for?August Lilleaas2009-04-27T07:28:44Z2009-04-27T07:28:44Z<p><code>form_for</code> is used with models. For a simple search form, I reccommend doing something like this:</p>
<pre><code><% form_tag posts_path, :method => :get do |f| %>
<%= f.text_field :query %>
<% end %>
</code></pre>
<p>You'll get <code>/posts?query=wtf</code>.</p>