Ruby on Rails: button_to, link_to

来源:互联网 发布:智能排班软件 编辑:程序博客网 时间:2024/06/05 22:49

I have this piece of code:

  <%= link_to "New User", new_user_path, :class => "button"  %><br />

which works fine, but when I change it to,

<%= button_to "New User", new_user_path, :class => "button"  %><br />

I get this error No route matches [POST] "/users/new"

Any help at all will be appreciated. Thanks

EDIT:

<%= button_to "New User", new_user_path, :class => "button", :method => :get  %><br />

3 Answers

Jesus Rodriguez is right about POST and GET, but if you really need the button you can simply override the default method:

<%= button_to "New User", new_user_path, :class => "button", :method => :get  %>

The "link_to" is looking for a /users/new using GET.

The "button_to" is looking for a /users/new using POST

If you create the routes for a controller using:

resources :user

By default, /users/new is a GET and not POST so, the second line doesn't find any route.

If you are thinking to change that action to POST I think that you should forget about it.


button_to defaults to POST, and link_to defaults to GET, this is why links_to worked. You can force button_to to use GET:

<%= button_to "New User", new_user_path, :class => "button", :method => :get %>

You can get more information about button_to options here: http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-button_to



0 0
原创粉丝点击