我完全按照https://github.com/rweng/jquery-datatables-rails。无法让 dataTables 工作。
在 index.html.erb 中
<table id = "funds12">
<thead>
<tr>
<th>Fund Name</th>
<th>Category</th>
<th>YTD</th>
</tr>
</thead>
<tbody>
<% @funds.each do |fund| %>
<tr>
<td><%= link_to "#{fund.scheme_name}", fund_path(fund.id) %><td>
<td><%= fund.category %></td>
<td><%= fund.fund_ytd %></td>
</tr>
<% end %>
</tbody>
</table>
<script>
$(document).ready(function() {
$('#funds12').dataTable();
} );
</script>
在 application.js 中
//= require jquery
//= require turbolinks
//= require_tree .
//= require jquery_ujs
//= require dataTables/jquery.dataTables
在 application.css.scss
*= require_self
*= require_tree .
*= require dataTables/jquery.dataTables
宝石文件
宝石'jquery-datatables-rails',git:'git://github.com/rweng/jquery-datatables-rails.git'
尝试了很多选项,只有一个表显示没有数据表的功能。使用 rails 4 gem 是否将新文件夹和文件添加到您的应用程序中,如果是,我的应用程序中没有添加任何内容