Rails 5 using will_paginate to create a load more button

前端 未结 2 727
野趣味
野趣味 2021-02-04 20:26

So I\'m trying to create a load more button (not infinite scroll although some simple js tweaks could make it so). I\'m using the will_paginate gem in Rails 5.

Its curre

2条回答
  •  面向向阳花
    2021-02-04 21:24

    So it was a stupid error of course.

    Remove the line on index.html.erb:

    :remote => true if @links.next_page
    

    So now it looks like this:

    
    <% if @links.next_page %>
      
    <% end %>
    

    All works fine now!

提交回复
热议问题