我想要一个链接来更新资源,而不使用HTML表单.
路线:
resources :users do resource :profile,:controller=>"profiles" resources :friends end
耙路线:
user_friend GET /users/:user_id/friends/:id(.:format){:action=>"show",:controller=>"friends"} PUT /users/:user_id/friends/:id(.:format){:action=>"update",:controller=>"friends"}
我想使用put来通过一个简单的链接更新一个朋友,像这样:
<%= link_to“添加为朋友”,user_friend_path(current_user,:method =>‘put’)%>
但是当Rails遇到这个环节时,他试图进行演出.
问题是:这是正确的链接?