如何确定Date.today在太平洋时区?

时间:2013-03-23 18:35:10

标签: ruby-on-rails ruby date datetime timezone

我正在跟踪用户活动:

def track
   UserActivityTracker.new(date: Date.today.to_s).track
end

#application.rb
config.time_zone = 'UTC'

如何确保在Pacific Time (US & Canada)中跟踪天数  时区。 我不想在application.rb

中更改时区

2 个答案:

答案 0 :(得分:5)

Rails会使用UTC将数据存储在数据库中(这是一件好事)

我不认为在现有应用上更改config.time_zone是一个好主意,UTC默认值可能是最好的

当rails使用ActiveRecord从数据库中提取数据时,它将根据该请求的Time.zone设置转换日期时间

Date.today 
# => server time, rails does not convert this (utc on a typical production server, probably local on dev machine)
Time.zone.now.to_date 
# => rails time, based on current Time.zone settings

您可以在ApplicationController上的before_filter中设置当前用户时区,然后在显示日期时使用I18n帮助程序

I18n.localize(user_activity_tracker.date, format: :short)
# => renders the date based on config/locals/en.yml datetime:short, add your own if you wish
# => it automatically offsets from UTC (database) to the current Time.zone set on the rails request 

如果您需要显示与当前Time.zone请求设置不同的时间,请使用Time.use_zone

# Logged on user is PST timezone, but we show local time for an event in Central
# Time.zone # => PST
<% Time.use_zone('Central Time (US & Canada)') do %>
  <%= I18n.l(event.start_at, format: :time_only_with_zone) %>
<% end %>

保存数据时,不要打扰进行转换,让rails将其保存为UTC,您可以使用帮助程序在任何时区显示值

另见:

答案 1 :(得分:1)

以这种方式替换config.time_zone

config.time_zone = 'PST'

如果您不想更改所有日期,可以使用Time.zone_offset

good_date = bad_date + Time.zone_offset('PST')

您可以在initialize或before_xxx回调中添加偏移量。