如何更新我的 View ,以保留所有现有的ajax和will_paginate功能?

我有一个页面rehome.html.erb

<div id="options">Option Select Here</>

<div class="all_animals">
  <%= render @animals %>
</div>

<% unless @animals.current_page == @animals.total_pages %>
  <div id="infinite-scrolling">
    <%= will_paginate @animals %>
  </div>
<% end %>

// WILL_PAGINATE
<script type="text/javascript">
$(function(){

 if($('#infinite-scrolling').size() > 0) {
  $(window).on('scroll', function(){
    //Bail out right away if we're busy loading the next chunk
     if(window.pagination_loading){
        return;
     }

    more_url = $('.pagination a.next_page').attr('href');

  if(more_url && $(window).scrollTop() > $(document).height() - $(window).height() - 50){
    //Make a note that we're busy loading the next chunk.
     window.pagination_loading = true;
    $('.pagination').text('Loading.....');
       $.getScript(more_url).always(function(){
          window.pagination_loading = false;
       });
    }
  });
 }
});
</script>

这将加载所有@animals集合,将其分页为每页6个,当我向下滚动页面时,将加载另外6个,依此类推。

对应 Controller
class PublicController < ApplicationController
 before_filter :default_animal, only: [:rehome]

 def rehome
  respond_to do |format|
   format.html
   format.js
  end
end

private

def default_animal
 @animals = Animal.animals_rehome.paginate(:page => params[:page], :per_page => 6)
end

end

rehome.js.erb
$('.all_animals').append('<%= j render @animals %>');
 <% if @animals.next_page %>
  $('.pagination').replaceWith('<%= j will_paginate @animals %>');
<% else %>
 $(window).off('scroll');
 $('.pagination').remove();
<% end %>

因此,当从下拉列表中选择一个选项时,将进行ajax发布以创建新查询,该查询将返回@animals的新集合
$.ajax({
type: 'POST',
url: '/public/rehomed',
  data: data_send,
   success: function(data) {
    //console.log(data);
   }
});

控制者
def rehomed
# conditions logic
@animals = Animal.joins(:user).where(conditions).paginate(:page => params[:page], :per_page => 6)

 respond_to do |format|
  format.js {render json: @animals }
 end
end

我想做的是加载新集合(再次分页为每页6个),当我向下滚动时,仅显示属于@animals新集合的对象(如果有的话)。

目前,分页链接没有更新,因为当我向下滚动页面时,原始集合已加载。

编辑

因此,我创建了一个rehomed.js.erb文件,该文件与我的rehome.js.erb几乎相同:
$('.all_animals').empty();
$('.all_animals').append('<%= j render @animals %>');
 <% if @animals.next_page %>
   $('.pagination').replaceWith('<%= j will_paginate @animals %>');
 <% else %>
  $(window).off('scroll');
  $('.pagination').remove();
 <% end %>

在我的归宿行动中
respond_to do |format|
  format.js
end

因此,将加载新的动物集合,重新创建分页链接,但使用重新定位的url,例如:

之前
<a class="next_page" href="/public/rehome?page=2" rel="next">Next →</a>


<a class="next_page" href="/public/rehomed?page=2" rel="next">Next →</a>

因此,当我向下滚动时,由于链接不存在并且getScript失败,我仅得到以下内容
$('.pagination').text('Loading.....');

编辑2

我已经实现了@japed的答案,但是现在呈现新集合之后,分页将继续呈现整个数据库集合,包括重复为新集合选择的那些,它会重复自身。

如何确保为链接生成正确的URL?

最佳答案

Will paginate允许您设置params哈希,因此您应该能够更改它以使用其他 Controller 操作,如下所示:

will_paginate(@animals, :params => { :controller => "public", :action => "rehomed" })

07-24 20:54