ruby-on-rails – 警告:时间#succ已经过时;使用时间1

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 警告:时间#succ已经过时;使用时间1前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个错误到底是什么?我正在运行这样的标准查询
time_range = (1.month.ago.beginning_of_month..1.month.ago.end_of_month)


Feed.find(:all,:conditions => ['created_at = ? AND id not in (?)',time_range,[1,2,3]]).count

有任何想法吗?谢谢

解决方法

我有这个问题,解决方案是添加“to_date”,以便它迭代几天,如下所示:
time_range = (1.month.ago.beginning_of_month.to_date..1.month.ago.end_of_month.to_date)
原文链接:https://www.f2er.com/ruby/271198.html

猜你在找的Ruby相关文章