1

我正在运行,但由于我在模型中使用Feed.history的行,它在标题中引发了上述错误:scopeFeed

scope :history, -> { or({:end.ne => nil}, {:end.lt => Time.current}) }

什么和为什么?!

4

1 回答 1

3

试试这个

scope :history, where('$or' => [{:end.ne => nil}, {:end.lt => Time.current}])
于 2014-03-12T11:51:25.940 回答