4

a并且b是返回相同类型对象的 ActiveRecord::Relation 对象(在这种情况下为 Micropost 对象)

a.class
=> ActiveRecord::Relation
b.class
=> ActiveRecord::Relation
a.first
=> Micropost(...) 
b.first
=> Micropost(...) #They both return the same type of objects
c=a+b
c.class
=> Array #This is not what i'm looking for
c=a|b
c.class
=> Array #Not what i'm looking for either
c=(a or b)
c.class
=> ActiveRecord::Relation #But it is just a, so it's wrong
c==a
=> true
a.merge(b)
=> []  #It merges with AND which in my case results in an empty array

有没有办法在 Rails 3.2.11 中“或”两个 Relation 对象并返回另一个 Relation 对象?我需要使用一些宝石squeel来做到这一点吗?

如果做不到:为什么做不到?我可以在a|b不从数据库中加载每条记录的情况下对数组进行分页吗?
如果可以做到:有人可以写一个如何做的例子吗?

提前致谢。

编辑:我将错误的变量复制到代码块中,b 不是 ActiveRecord::Relation,它实际上是一个数组,这就是 a.merge(b) 返回 [] 的原因。我的错。

TLDR:问题是错误的,数组可以分页:)

4

1 回答 1

3

对于你的问题:Can I paginate the array resulting from a|b without loading every record from the database?

的,您可以分页array。只有你需要做的是require 'will_paginate/array'你正在使用paginate的文件array。如果您在很多地方使用,那么最好将其添加到config/initializers. 它的数组因此不会在每次(即)查询仅触发一次时从数据库中加载每条记录。要加载关联,您可以eager load on array使用include.

于 2013-02-24T17:50:00.627 回答