我有一个包含日期时间戳的对象,例如
time = Sat, 06 Apr 2013 08:00:00 PDT -07:00
我只是想比较对象时间,看看日期是否与明天的日(月,日,年)相匹配(不与时间一致)。这项检查每天都会进行。
我正在尝试以下内容:
time == Date.tomorrow
答案 0 :(得分:3)
执行:
time.to_date == Date.tomorrow
答案 1 :(得分:0)
尝试:
Date.parse(time) == Date.tomorrow