检查日期是否超过一天或一岁等最好的方法是什么?
解决方法
看到这个问题:
comparision of date in ruby
比较像一个值
比较像一个值
1.day.ago 1.month.ago 1.year.ago
使用这些产生以下输出:
Loading development environment (Rails 3.0.7) ruby-1.9.2-p180 :001 > 1.year.ago => Thu,27 May 2010 17:45:25 UTC +00:00 ruby-1.9.2-p180 :002 > 1.month.ago => Wed,27 Apr 2011 17:45:32 UTC +00:00 ruby-1.9.2-p180 :003 > 1.day.ago => Thu,26 May 2011 17:45:36 UTC +00:00 ruby-1.9.2-p180 :004 >
看看是否有效.