RESTful way to use form_for? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T06:15:01Z http://stackoverflow.com/feeds/question/787869 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/787869/restful-way-to-use-formfor 0 RESTful way to use form_for? thaiyoshi 2009-04-24T23:52:12Z 2009-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>&lt;% form_for :searches, @search, :url =&gt; searches_path, :html =&gt; {:method =&gt; :post} do |f| %&gt; &lt;%= f.error_messages %&gt; &lt;p&gt; &lt;%= f.label :keywords %&gt;&lt;br /&gt; &lt;%= f.text_field :keywords %&gt; &lt;/p&gt; &lt;p&gt;&lt;%= f.submit "Submit" %&gt;&lt;/p&gt; &lt;% end %&gt; </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#789245 0 Answer by andi for RESTful way to use form_for? andi 2009-04-25T16:15:54Z 2009-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#792517 0 Answer by August Lilleaas for RESTful way to use form_for? August Lilleaas 2009-04-27T07:28:44Z 2009-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>&lt;% form_tag posts_path, :method =&gt; :get do |f| %&gt; &lt;%= f.text_field :query %&gt; &lt;% end %&gt; </code></pre> <p>You'll get <code>/posts?query=wtf</code>.</p>