您好我正在尝试让AJAX在rails 3.1上的ruby中使用简单的destroy方法。在我的index.html.erb中,我有一个如下所示的destroy链接:
<%= link_to 'Destroy', travel_datum, :confirm => 'Are you sure?', :method => :delete, :remote=> true %>
在我的控制器中包含了破坏方法
respond_to do |format|
format.html { redirect_to travel_data_url }
format.json { head :ok }
format.js
end
最后在我的app / views中,我有一个看起来像这样的destroy.js.erb:
$('#<%= dom_id(@travel_datum) %>').hide();
我错过了什么?