Rails 5 using will_paginate to create a load more button

前端 未结 2 735
野趣味
野趣味 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:23

    If you check the server console, you can actually see two requests coming in, one triggered by your :remote => true enabled link and other from your custom ajax. Actually you don't need any js to make this work. Just remove that click function from your pagination.js.coffee or remove :remote => true from the link. After all both are doing the same thing. Hope this will help.

提交回复
热议问题