我正在使用kaminari,一切都在当地运作良好。在heroku上,任何写在标准kaminari paginator.render
块内的代码都不会被渲染。
考虑
<%= paginator.render do %>
<h1> this is the paginator</h1>
<nav class="text-center">
<ul class="pagination">
<%= first_page_tag unless current_page.first? %>
<%= prev_page_tag unless current_page.first? %>
<% each_page do |page| %>
<% if page.left_outer? || page.right_outer? || page.inside_window? %>
<%= page_tag page %>
<% elsif !page.was_truncated? %>
<%= gap_tag %>
<% end %>
<% end %>
<%= next_page_tag unless current_page.last? %>
<%= last_page_tag unless current_page.last? %>
</ul>
</nav>
<% end %>
我添加了<h1>this is the paginator</h1>
来修补正在发生的事情。我的日志看起来干净,没有问题。我错过了一些非常明显的东西吗?我看过kaminari文档,并且鉴于本地工作正在进行,我不完全确定在heroku上看什么,任何指针都会非常感激。
答案 0 :(得分:0)