如何在不执行附加查询的情况下过滤AR查询的结果?
例如
u = User.where(name: "bob",age: [10,20]) # 1st select query to db u.class # ActiveRecord::Relation tens = u.where(age: 10) # 2nd select query to db
解决方法
ActiveRecord:Relation仅在访问其元素时查询数据库.所以你所拥有的顺序根本不会调用db,除非你写的是u.first或tens.first.
在Rails控制台中,每个语句结果都打印到控制台,因此每次执行查询时,它都有所不同.您可以通过追加来跳过打印;每个陈述后1.
除此之外,如果您仍然要使用第一个查询过滤结果:
u = User.where(name: "bob",20]) # no query at this point u.class # ActiveRecord::Relation u.first # query to db u.class # Array tens = u.select{|x| x.age == 10} # no query to db