in Ruby on Rails, why does "form_for @story" has to have Story as RESTful - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T19:17:14Zhttp://stackoverflow.com/feeds/question/903876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/903876/in-ruby-on-rails-why-does-formfor-story-has-to-have-story-as-restful0in Ruby on Rails, why does "form_for @story" has to have Story as RESTfulJian Lin2009-05-24T14:27:17Z2009-07-06T20:28:04Z
<p>It seems that when we use</p>
<pre><code>form_for @story do |f|
</code></pre>
<p>then Story has to be a RESTful resource and it has to be</p>
<pre><code>map.resources :stories
</code></pre>
<p>in the routes.rb.</p>
<p>Can Story be not RESTful? Can it be a form for non-RESTful data?</p>
http://stackoverflow.com/questions/903876/in-ruby-on-rails-why-does-formfor-story-has-to-have-story-as-restful/903930#9039304Answer by Brad for in Ruby on Rails, why does "form_for @story" has to have Story as RESTfulBrad2009-05-24T14:53:33Z2009-05-24T15:17:37Z<p>Check out <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html#M001572" rel="nofollow">rails documentation for form_for</a>.</p>
<p>You can modify the <code>form_for @story</code> and pass in some other options to suit your needs.</p>
<p>If that doesn't work for you, you can use <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/FormTagHelper.html#M001697" rel="nofollow">form_tag</a> instead.</p>