Rails 应用程序不遵循 config/application.rb 中配置的时区



我是配置时区的新手,对几点感到困惑。任何关于正确配置的建议将不胜感激。

我的理解是,最佳做法是将所有时间戳存储为UTC存储在数据库中(我使用的是PostgreSQL(。另一方面,在实际应用程序中,我想查看本地时区(JST +9:00(的时间戳。我已经配置了这样的config/application.rb

module MyApp
  class Application < Rails::Application
    config.load_defaults 5.2
    config.time_zone = 'Tokyo'
  end
end

但是,我不确定它是否正确配置,因为我在rails console中得到了混合的结果。 Time.zoneTime.now告诉我时区设置为 JST,但是当我User.first时,created_atupdated_at 时间戳呈现为 UTC。

User.first
#=> #<User id: 1, first_name: "Bob", last_name: "Smith", created_at: "2019-04-09 08:54:30", updated_at: "2019-04-09 08:54:30"> 

但是,如果我特别要求created_at时间,则时间将呈现为 JST:

User.first.created_at
#=> Tue, 09 Apr 2019 17:54:30 JST +09:00

为什么时间戳呈现为 UTC,除非我特别要求时间本身?这正常吗?我的其他表中的DateTime列也发生了同样的现象。

你所有的日期似乎都是一样的,只是它们在不同上下文中的表示方式。

这:

User.first
#=> #<User id: 1, first_name: "Bob", last_name: "Smith", created_at: "2019-04-09 08:54:30", updated_at: "2019-04-09 08:54:30">

呈现.inspect的结果

这:

User.first.created_at
#=> Tue, 09 Apr 2019 17:54:30 JST +09:00

控制台是否猜测您希望使用当前时区格式化日期。

您可以强制某些表示是明确的

User.first.created_at.to_formatted_s(:db) #should print the same as you see on the inspect
I18n.localize(User.first.created_at) #should localize the date with the default date format
I18n.localize(USer.first.created_at, format: :something) #should localize the date as the format you defined as ":something" on your locale file

相关内容

  • 没有找到相关文章

最新更新