will_paginate JSON数组 [英] will_paginate JSON array

查看:110
本文介绍了will_paginate JSON数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

决定使用Redis JSONify我的网站.如何获取will_paginate与json一起使用?

Decided to JSONify with Redis my site. How do I get will_paginate to work with json?

# games.html.erb
<%= js_will_paginate @games, renderer: BootstrapPagination::Rails, class: 'pagination-sm', previous_label: "&#8592;".html_safe, next_label: "&#8594;".html_safe, page_links: false %>

这是我得到的错误:

# undefined method `total_pages' for #<Array:0x007f90ebc05cf0> ln 23 of will_paginate_helper.rb
ln23: will_paginate(collection, options.merge(:renderer => WillPaginateHelper::WillPaginateJSLinkRenderer))

还有我的will_paginate_helper:

And my will_paginate_helper:

# will_paginate_helper.rb
module WillPaginateHelper
  class WillPaginateJSLinkRenderer < BootstrapPagination::Rails
    def prepare(collection, options, template)
      options[:params] ||= {}
      options[:params]['_'] = nil
      super(collection, options, template)
    end

    protected
    def link(text, target, attributes = {})
      if target.is_a? Fixnum
        attributes[:rel] = rel_value(target)
        target = url(target)
      end

      @template.link_to(target, attributes.merge(remote: true)) do
        text.to_s.html_safe
      end
    end
  end

  def js_will_paginate(collection, options = {})
    will_paginate(collection, options.merge(:renderer => WillPaginateHelper::WillPaginateJSLinkRenderer))
  end
end

当我在nomethoderror异常下使用cli时...

when I play around with the cli below the nomethoderror exception...

>>  collection
=> [{"id"=>8199, "start_time"=>nil, "game_date"=>"2016-10-23", ... etc }]
>> collection.first
=> {"id"=>8199, "start_time"=>nil, ... etc

我是否需要将collection转换为will_paginate可以使用的东西,还是需要重写/覆盖js_will_paginate?谢谢!

Do I need to convert collection to something will_paginate can work with or do I re-write/override js_will_paginate? Thank you!

推荐答案

弄清楚了.

require 'will_paginate/array'添加到了我的will_paginate_helper.rb中,然后在.to_json之后对集合进行了分页,例如在我的助手(或您的控制器)中:

added require 'will_paginate/array' to my will_paginate_helper.rb and then paginated the collection AFTER .to_json, e.g. in my helper (or your controller):

games = Game.order(game_date: :desc).postgame.to_json
@games = Oj.load games
@games = @games.paginate(page: params[:page], per_page: 10)

像以前一样使用will_paginate或js_will_paginate.

Works with will_paginate or js_will_paginate just as before.

这篇关于will_paginate JSON数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆