0
我使用kaminari,本地一切正常。在heroku上,任何寫在標準kaminari paginator.render
塊內的代碼都不會被渲染。Heroku不會正確呈現'paginate.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上需要看什麼,任何指針都會非常感謝。
您是否在本地使用與heroku相同版本的gem? – Adrian
@Adrian它會像我一樣,http://cl.ly/image/2C3H0S093u0E http://cl.ly/image/2f2E2F2w3x0E – John