在index.html.erb中,我显示所有产品,每个产品旁边都有“编辑”和“删除”操作:
<% @products.each do |product| %> ... <%= link_to("Edit",edit_product_path(product.id),:class => 'action') %> <%= link_to("Delete",product,:method => :delete,:class => 'action') %> ... <% end %>
Unknown action The action 'show' could not be found for ProductsController
我猜是因为request方法是GET而不是DELETE.但是,如果我明确设置,我不知道为什么会发生这种情况:method => :删除.
routes.rb很简单:
root :to => "products#index" resources :products
我启用了Javascript
请建议.
解决方法
你有一个javascript_include_tag中指定的rails.js吗?这是非常显着的DELETE方法工作所必需的.如果你使用jQuery,那么有一个
solution for that too.