form_for but to post to a different action

后端 未结 6 2318
小蘑菇
小蘑菇 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 05:57

    form_for @user, :url => url_for(:controller => 'mycontroller', :action => 'myaction')
    

    or

    form_for @user, :url => whatever_path
    

提交回复
热议问题