in Ruby on Rails, why does "form_for @story" has to have Story as RESTful - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T19:17:14Z http://stackoverflow.com/feeds/question/903876 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/903876/in-ruby-on-rails-why-does-formfor-story-has-to-have-story-as-restful 0 in Ruby on Rails, why does "form_for @story" has to have Story as RESTful Jian Lin 2009-05-24T14:27:17Z 2009-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#903930 4 Answer by Brad for in Ruby on Rails, why does "form_for @story" has to have Story as RESTful Brad 2009-05-24T14:53:33Z 2009-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>