It depends on the type of object you pass as a parameter to form_for. eg:
@car = Car.new @car1 = Car.first form_for(@car) generates a url ( /cars ) method "post" #create action form_for(@car1) generates a url ( /cars/:id/ ) method "put" # update action. this happens when the object has been saved in the database already form_for doesn't generate a url pointing to :new action unless specified. On Thu, Oct 9, 2014 at 9:07 AM, candor <[email protected]> wrote: > form_for defaults to 'new' if no :url is specified. Why doesn't it default > to 'create' instead, since that is the most common scenario? > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/0bd7fcc4-74a8-46d0-b8da-2dd9272424a5%40googlegroups.com > <https://groups.google.com/d/msgid/rubyonrails-talk/0bd7fcc4-74a8-46d0-b8da-2dd9272424a5%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAFKVRj-75B4jz%3DKgv2BUrQP6moqoh3ni-aBvEnyUn5CQWCg-RA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

