比如程序创建的形式为: admin/notice
控制层(notice_controller.rb)中是基本的 scaffold 写法;
视图中的写法为: <% @notices.each do |notice| %>
<%= link_to 'Destroy', admin_notice_path(notice),confirm: 'Are you sure?', :method => :delete %> <% end %>
routes.rb 中的写法为: scope 'admin', :as => 'admin', :module => 'admin' do
resources :notice end
在程序执行时,点击“Destroy”链接导向了 show 方法,其中的“:method => :delete”为什么没起作用?