form_for but to post to a different action

后端 未结 6 2299
小蘑菇
小蘑菇 2020-12-02 05:08

I want to have a form_for @user, but post to a custom action in the users controller.

How can I do this?

6条回答
  •  無奈伤痛
    2020-12-02 06:09

    The following works for me:

    form_for @user, :url => {:action => "YourActionName"}
    

提交回复
热议问题