我试图将用户为开始日期和结束日期选择的内容与当前时间进行比较,以防止用户选择过去的时间。它可以工作,除了你必须选择一个时间,在我的例子中,提前 4 小时才能通过验证。
视图:
datetime_select(:start_date, ampm: true)
控制器:
if self.start_date < DateTime.now || self.end_date < DateTime.now
errors.add(:date, 'can not be in the past.')
end
self.start_date
返回我当前的时间,但以 UTC 格式返回,这是错误的。 DateTime.now
返回我的当前时间,但偏移量为 -0400,这是正确的。
例:
我当前时间是 2013-10-03 09:00:00.000000000 -04:00
self.start_date是 2013-10-03 09:00:00.000000000 Z
日期时间现在是 2013-10-03 09:00:00.000000000 -04:00
为什么会发生这种情况,解决它的最佳方法是什么?
你可以做这样的事情
around_filter :set_time_zone
private
def set_time_zone
old_time_zone = Time.zone
Time.zone = current_user.time_zone if logged_in?
yield
ensure
Time.zone = old_time_zone
end
你也可以这样做
将以下内容添加到应用程序.rb 工作
config.time_zone = 'Eastern Time (US & Canada)'
config.active_record.default_timezone = 'Eastern Time (US & Canada)'
我最终通过将start_date转换为字符串并返回时间来修复它。很奇怪我需要:local
,因为to_time上的文档说它是默认值,但它仅在存在时才有效。
def not_past_date
current_time = DateTime.now
start_date_selected = self.start_date.to_s.to_time(:local)
end_date_selected = self.start_date.to_s.to_time(:local)
if start_date_selected < current_time || end_date_selected < current_time
errors.add(:date, 'can not be in the past.')
end
end