很确定我在这里遗漏了一些非常简单的东西:
我正在尝试显示一系列包含两个不同模型实例的页面 - 个人资料和群组。我需要按名称属性排序。我可以为每个模型选择所有实例,然后对它们进行排序和分页,但这感觉很邋and且效率低下。
我正在使用mislav-will_paginate,并想知道是否有更好的方法来实现这一目标?类似的东西:
[Profile, Group].paginate(...)
会很理想!
答案 0 :(得分:7)
好问题,我遇到过几次相同的问题。每次,我通过编写基于sql联合的自己的sql查询来结束它(它与sqlite和mysql一起正常工作)。然后,您可以通过传递结果(http://www.pathf.com/blogs/2008/06/how-to-use-will_paginate-with-non-activerecord-collectionarray/)来使用will paginate。不要忘记执行查询来计算所有行。
一些代码行(未经测试)
my_query = "(select posts.title from posts) UNIONS (select profiles.name from profiles)"
total_entries = ActiveRecord::Base.connection.execute("select count(*) as count from (#{my_query})").first['count'].to_i
results = ActiveRecord::Base.connection.select_rows("select * from (#{my_query}) limit #{limit} offset #{offset}")
是否过度使用?也许,但你得到的查询数量最少,结果也很一致。
希望它有所帮助。
注意:如果从http参数获得偏移值,则应使用sanitize_sql_for_conditions(即:sql injection ....)
答案 1 :(得分:1)
你可以近距离做一些事情:
@profiles, @groups = [Profile, Group].map do |clazz|
clazz.paginate(:page => params[clazz.to_s.downcase + "_page"], :order => 'name')
end
然后使用页面参数profile_page
和group_page
进行分页。您可以在视图中进行will_paginate
调用,以使用正确的页面:
<%= will_paginate @profiles, :page_param => 'profile_page' %>
....
<%= will_paginate @groups, :page_param => 'group_page' %>
尽管如此,我不确定单独设置@groups
和@profiles
会带来什么好处。
答案 2 :(得分:1)
在我的上一个项目中我遇到了一个问题,我不得不在我的搜索功能中对单个分页的多个模型进行分页。 它应该以第一个模型应该首先出现的方式工作,第一个模型的结果第二个模型应该继续结果而第三个等等作为一个单一的搜索提要,就像facebook提要一样。 这是我为完成此功能而创建的功能
def multi_paginate(models, page, per_page)
WillPaginate::Collection.create(page, per_page) do |pager|
# set total entries
pager.total_entries = 0
counts = [0]
offsets = []
for model in models
pager.total_entries += model.count
counts << model.count
offset = pager.offset-(offsets[-1] || 0)
offset = offset>model.count ? model.count : offset
offsets << (offset<0 ? 0 : offset)
end
result = []
for i in 0...models.count
result += models[i].limit(pager.per_page-result.length).offset(offsets[i]).to_a
end
pager.replace(result)
end
end
尝试并让我知道如果你有任何问题,我也将它作为一个问题发布到will_paginate存储库,如果每个人都确认它正常工作我将fork并将其提交给库。 https://github.com/mislav/will_paginate/issues/351
答案 3 :(得分:0)
您是否尝试使用自己的分页器显示两组不同的结果并通过AJAX更新?这不完全是你想要的,但结果是相似的。