在 erb Rails 和 will_paginate 中显示最后一条记录

Display last record in erb Rails with will_paginate

我正在尝试使用此布局显示我的模型 Tribune 中的最后一条实例化记录:

一些随机论坛
一些随机论坛

最后

最后记录的论坛

我正在使用 gem will_paginate,它允许我每页显示 10 个论坛。 问题是布局有效但应用于每个页面。 每 10 个论坛,一个被标识为 "last"。显然,我希望只有一个论坛被确定为最后一个。

这是我的代码:

<div class="wrapping">


<% @tribunes.each do |tribune| %>
  <div class="container">
    <div class="mouse-out-container"></div>
    <div class="row">
      <% if tribune == @tribunes.last
%>
  <h1>Last</h1>
  <div class="col-xs-12 col-md-12">
    <div class="card">
      <div class="card-category">Popular</div>
      <div class="card-description">
        <h2><%= tribune.title %></h2>
        <p><%= tribune.content.split[0...25].join(' ') %>...</p>
      </div>
      <img class="card-user" src="https://kitt.lewagon.com/placeholder/users/tgenaitay">
      <%= link_to "", tribune, :class => "card-link" %>
    </div>
  <% else %>


  <div class="col-xs-12 col-md-12">
    <div class="card">
      <div class="card-category">Popular</div>
      <div class="card-description">
        <h2><%= tribune.title %></h2>
        <p><%= tribune.content.split[0...25].join(' ') %>...</p>
      </div>
      <img class="card-user" src="https://kitt.lewagon.com/placeholder/users/tgenaitay">
      <%= link_to "", tribune, :class => "card-link" %>
    </div>

      </div>
      <% end %>
      <% end %>
    </div>

    <div class="center-paginate">
      <%= will_paginate @tribunes, renderer: BootstrapPagination::Rails %>
    </div>

  </div>
</div>

当所有的Goole-fu都失败时,我们必须挖掘the source code。在那里我们发现了一些有趣的方法:

# Any will_paginate-compatible collection should have these methods:
#   current_page, per_page, offset, total_entries, total_pages
#
# It can also define some of these optional methods:
#   out_of_bounds?, previous_page, next_page

从这些来看,方法 next_page 看起来很有趣,因为它似乎 return nil 如果没有更多的页面。

现在我们可以构造循环了:

<% @tribunes.each do |tribune| %>
  <% if !@tribunes.next_page && tribune == @tribunes.last %>
     <!-- We're on the last page and the last tribune of that page -->
     Last tribune content
  <% else %>
     <!-- We still have tribunes to go -->
     Normal tribune content
  <% end %>
<% end %>