2

我正在尝试实现 Railscasts 第 114 集中显示的无限页面功能。分页效果很好,但根本没有触发无限页面功能。我没有看到任何错误;只是分页,好像我没有添加无尽的页面 javascript。我的代码:

活动控制器

class ActivitiesController < ApplicationController
    before_filter :authenticate_user!
  def index
    @activities = PublicActivity::Activity.order("created_at DESC").where(owner_type: "User", owner_id: current_user.followed_users.map {|u| u.id}).page(params[:page]).per_page(15)
    @post = current_user.posts.build

     respond_to do |format|
      format.html
      format.json
      format.js 
    end
  end
end

活动.js.coffee

jQuery ->
  if $('.pagination').length
    $(window).scroll ->
      url = $('.pagination .next_page').attr('href')
      if url && $(window).scrollTop() > $(document).height() - $(window).height() - 50
        $('.pagination').text("Loading more activities...")
        $.getScript(url)
    $(window).scroll()

index.js.erb

$('#activities').append('<%= j render ('shared/activities') %>');
<% if @activities.next_page %>
  $('.pagination').replaceWith('<%= j will_paginate('shared/activities') %>');
<% else %>
  $('.pagination').remove();
<% end %>
<% sleep 1 %>

共享/_activities.html.erb

<div class="activities">
<% @activities.each do |activity| %>
<code>
<% end %>
<%= will_paginate @activities %>
</div>

问题必须与javascript有关,但我无法弄清楚。关于可能导致问题的任何想法?

谢谢!-b

4

2 回答 2

1

我设法在 Rails 4 中没有“index.js.erb”文件的情况下做到了。只需添加这个咖啡脚本:

$(window).on 'scroll', ->
  if $('.pagination').length
    @url = $('.pagination .next_page').attr('href')
    if url && $(window).scrollTop() > $(document).height() - $(window).height() - 50
      $('.pagination').remove()
      $('#articles').append('<div>')
      $('#articles div').last().load @url+' #articles', ->
          if $('.next_page.disabled').length
            $('.pagination').remove()

这会加载下一页,然后使用新加载页面上的分页,直到没有更多的下一页。只需将“#articles”替换为脚本中容器的 ID。跳过 index.js.erb 和 respond_to jazz。

于 2013-12-06T07:34:03.643 回答
0

这是我的代码中的相关文件,其中我有无穷无尽的页面使用分页。希望你能从下面找出你的具体解决方案:

我的 index.js.erb 文件

 $('.carousel').append("<%= j render ('shared/recentlyadded') %>");
<% if @recently_added_video.next_page %>
  $('.pagination').replaceWith("<%= j will_paginate(@recently_added_video) %>");
<% else %>
  $('.pagination').remove();
<% end %>

我的 index.html.erb 文件

  <div class="carousel"><%= render partial: 'shared/recentlyadded' %></div>
  <%= will_paginate @recently_added_video %>

我的 _recentlyadded.html.erb 文件

 <ul class="jcarousel-skin-recent">
    <% @recently_added_video.each do |v| %>
      <li>
      <code>
      </li>
    <% end %> 
  </ul> 

<script type="text/javascript">
    jQuery(document).ready(function () {
        jQuery('.jcarousel-skin-recent').jcarousel({
            wrap:'both',
            animation:'slow'
        });
    });
</script>

我的 javascript 文件

jQuery ->

  if $('.pagination').length
    $(window).scroll ->
      url = $('.pagination .next_page').attr('href')
      if url && $(window).scrollTop() > $(document).height() - $(window).height() - 225
        $('.pagination').text("...")
        $.getScript(url)
    $(window).scroll()
于 2013-05-28T17:23:19.697 回答