vote up 0 vote down star

It seems that when we use

form_for @story do |f|

then Story has to be a RESTful resource and it has to be

map.resources :stories

in the routes.rb.

Can Story be not RESTful? Can it be a form for non-RESTful data?

flag

26% accept rate

1 Answer

vote up 4 vote down

Check out rails documentation for form_for.

You can modify the form_for @story and pass in some other options to suit your needs.

If that doesn't work for you, you can use form_tag instead.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.