正如标题所述,我想让管理员可以通过点击show.html.erb页面上的链接来删除用户。
这比设计要困难得多,或者我只是不够了解
我在show.html.erb页面上有代码<%=link_to_if(can?(:manage, :all), 'Delete', user_path(@user_on_page), :id=>'delete', :confirm=>'Are you sure you want to delete this user?', :method=>:delete){}%>
,但是当我从管理员帐户点击此链接时,我收到404错误。