Ruby on rails - 为什么使用 Kaminari 时此分页不起作用?



这是错误和我的代码。我正在使用Kaminari

Error:  undefined method `model_name' for #<Array:0x0000001d5abeb0>
73:     <%= page_entries_info(@communities).html_safe %>

视图

<%= page_entries_info(@communities).html_safe %>

社区控制者

更新*这就是我现在获取的方式

    @search = Community.search do  
    fulltext params[:search]
        with(:location_id, params[:location]) if params[:location].to_i >0           
        with(:type_id, params[:type]) if params[:type].to_i >0
        order_by :cached_votes_up, :desc
        paginate :page => params[:page], :per_page => 10
    end
    @communities = @search.results

如果您一起使用 kaminariwill_paginate,您肯定会遇到此错误。简而言之,卡米纳里will_paginate是互不相容的。

如果您使用的是rails_admin(使用 kaminari 进行分页)并且还使用 will_paginate ,则需要将以下代码添加到 config 目录下的初始值设定项之一,或者您可以创建一个新文件,比如说名称为"will_paginate"添加代码,并将其放入初始值设定项目录中。

if defined?(WillPaginate)
  module WillPaginate
    module ActiveRecord
      module RelationMethods
        def per(value = nil) per_page(value) end
        def total_count() count end
      end
    end
    module CollectionMethods
      alias_method :num_pages, :total_pages
    end
  end
end

您的翻译有问题:

"%{total} total records. Displaying %{first} - %{last}"

在这里,当您调用此翻译时,它需要 3 个参数:变量totalfirstlast,但"你"只给出这两个变量:entry_namecount

您能提供有关page_entries_info方法的更多信息吗?

编辑:

正如您所评论的,https://github.com/amatsuda/kaminari/blob/master/lib/kaminari/helpers/action_view_extension.rb#L102 第 102-109 行:您需要在 .yml 翻译文件中包含如下内容:

en:
  helpers:
    page_entries_info:
      one_page:
        display_entries: "%{count} total records for %{entry_name}."
      more_pages:
        display_entries: "%{total} total records. Displaying %{first} - %{last}"

相关内容

  • 没有找到相关文章

最新更新