我正在运行一个 Rails 应用程序,它运行良好,除了一小部分代码。
当我单击“销毁”时,我需要浏览器请求批准,但它没有。
这是我观点的一部分index.html.erb
<td><%= button_to 'Destroy', {:action => 'destroy', :id => publisher},
{:method => :delete, :confirm => 'Are you sure?'} %></td>
我找不到语法有什么问题,也找不到任何建议为什么这不起作用
请帮忙?