Ruby的strftime没有显示'%Z'的时区偏移量

时间:2015-02-02 22:12:26

标签: ruby-on-rails ruby strftime

我有以下时间对象:

[8] pry(#<#<Class:0x007f928f12f560>>)> display_num
=> 2015-02-19 09:00:00 -0600
[9] pry(#<#<Class:0x007f928f12f560>>)> display_num.is_a?(Time)
=> true
[10] pry(#<#<Class:0x007f928f12f560>>)> display_num.is_a?(DateTime)
=> false
[11] pry(#<#<Class:0x007f928f12f560>>)> display_num.strftime("%l:%M%P %Z")
=> " 9:00am "
[12] pry(#<#<Class:0x007f928f12f560>>)> display_num.strftime("%l:%M%P %z")
=> " 9:00am -0600"

我完全被这样难过了:

[16] pry(#<#<Class:0x007f928f12f560>>)> Time.new
=> 2015-02-02 14:09:13 -0800
[17] pry(#<#<Class:0x007f928f12f560>>)> t = Time.new
=> 2015-02-02 14:09:25 -0800
[18] pry(#<#<Class:0x007f928f12f560>>)> t.strftime("%l:%M%P %Z")
=> " 2:09pm PST"

工作正常。

上面的块中发生了什么,以防止时区以人类可读的格式显示?

2 个答案:

答案 0 :(得分:6)

格式指令%Z请求符号时区(名称或缩写); %z是偏移量。虽然您始终知道偏移量,但您可能不知道符号时区名称。

我怀疑这是display_time发生的事情。它是使用偏移量初始化的,因此它没有任何符号时区名称可供显示。

您无法可靠地从偏移量中获取名称;例如,-0400可以是大西洋标准时间或东部夏令时。大多数偏移量对于它们的时区都有多个选项,大多数时区都有多个名称。

答案 1 :(得分:3)

值得补充的是,如果您使用方法in_time_zone中的Rails,ActiveSupport monkey-patches,可以使用strftime解决此问题:

Time.current.localtime("-06:00").strftime("TZ is: %Z") # => "TZ is: "
Time.current.in_time_zone("America/Chicago").strftime("TZ is: %Z") # => "TZ is: CDT"
Time.current.in_time_zone("America/New_York").strftime("TZ is: %Z") # => "TZ is: EDT"

参考文献:

DateAndTime::Zones#in_time_zone

时区字符串的完整列表在ActiveSupport::TimeZone::MAPPING

中定义