前端erb 页面:
<%= link_to_prev_page @trades, "上一页" %>
<%= link_to_next_page @trades, "下一页" %>
后端controller: 调用.without_count 方法
@trades.page(params[:page]).per(1000).without_count
<%= link_to_prev_page @trades, "上一页" %>
<%= link_to_next_page @trades, "下一页" %>
@trades.page(params[:page]).per(1000).without_count