我有一张桌子,每页分页 20 个:
<% @num = 0%>
<table>
<tr>
<th>id</th>
<th>title</th>
</tr>
<% for authors in @authors%>
<tr>
<td><%= @num += 1 %></td>
<td><%= authors.title %></td>
</tr>
<% end %>
</table>
<%= will_paginate @authors%>
我想让 id 行继续。当我点击第一页时,我应该看到 1,2 3, 4 等 ID。当我点击第二页时,我应该会看到 21、22、23 等,但它只是重新启动到 1、2 3