如何在两个数字之间获得投票? - 铁路

时间:2016-07-30 14:45:51

标签: ruby-on-rails ruby-on-rails-4 where acts-as-votable

我尝试了这个,但它没有用,它返回所有帖子

Post.where(' -1 < cached_votes_score < 10')

虽然

Post.where(' cached_votes_score < 10')

有效,对此有何看法?

1 个答案:

答案 0 :(得分:0)

我认为你应该使用AND

Post.where('cached_votes_score > -1').where('cached_votes_score < 10')