标签: ruby-on-rails ruby-on-rails-4 where acts-as-votable
我尝试了这个,但它没有用,它返回所有帖子
Post.where(' -1 < cached_votes_score < 10')
虽然
Post.where(' cached_votes_score < 10')
有效,对此有何看法?
答案 0 :(得分:0)
我认为你应该使用AND:
AND
Post.where('cached_votes_score > -1').where('cached_votes_score < 10')