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:问题是错误的,数组可以分页:)