26

我为 rails 应用程序设置了默认时区。以及 Date 对象的一个​​实例。

如何让 make Date#beginning_of_day 返回指定时区的一天的开始,而不是我的本地时区。

有没有其他方法可以在给定日期的指定时区获取一天的开始时间?

date = Date.new(2014,10,29)

zone = ActiveSupport::TimeZone.new('CET')
date.foo(zone) # should return "Wed, 29 Oct 2014 00:00:00 CET +01:00"

zone = ActiveSupport::TimeZone.new('UTC')
date.foo(zone) # should return "Wed, 29 Oct 2014 00:00:00 UTC +00:00"
4

8 回答 8

49
DateTime.now.in_time_zone(Time.zone).beginning_of_day
于 2011-09-21T06:58:19.987 回答
20
time_zone = Time.zone # any time zone really
time_zone.local(date.year, date.month, date.day)

问题是,在 ActiveSupport 2.3Date.beginning_of_day中不支持Time.zone

比较https://github.com/rails/rails/blob/v2.3.11/activesupport/lib/active_support/core_ext/date/calculations.rb#L64 (AS 2.3)

https://github.com/rails/rails/blob/master/activesupport/lib/active_support/core_ext/date/calculations.rb#L74https://github.com/rails/rails/blob/master/activesupport /lib/active_support/core_ext/date/zones.rb#L7 (AS 3)

于 2011-03-24T13:23:53.187 回答
9

Date#beginning_of_day将始终返回 00:00。

但据我了解,您想知道其他时区的时间,而当前时区是一天的开始。

所以。让我们找出您当前位置的一天的开始。想象一下它是法国巴黎:

bd = DateTime.now.in_time_zone('Paris').beginning_of_day
# or just
bd = DateTime.now.in_time_zone(1).beginning_of_day
#=> Thu, 24 Mar 2011 00:00:00 WET +01:00

现在让我们看看莫斯科的时间:

moscow_time = bd.in_time_zone("Moscow") # or in_time_zone(3)
#=> Thu, 24 Mar 2011 02:00:00 AST +03:00
london_time = bd.in_time_zone("London")
#=> Wed, 23 Mar 2011 23:00:00 GMT +00:00
kyiv_time = bd.in_time_zone("Kyiv")
#=> Thu, 24 Mar 2011 01:00:00 EET +02:00 

对于不同的形式now日:

# You even shouldn't call now, because it by default will be 00:00
date = DateTime(2011, 1, 3).in_time_zone("-10")
# or
date = DateTime.new(2011,1,3,0,0,0,"-10")
# and same way as above
moscow_time = date.in_time_zone("Moscow") # or in_time_zone(3)

并转换DateDateTime

date = Date.new(2011,1,3).to_datetime.change(:offset => "EST")
于 2011-03-24T12:54:55.027 回答
4

离开 Peder 的回答,这是我为 PST 时区所做的:

DateTime.now.in_time_zone("Pacific Time (US & Canada)").beginning_of_day
于 2016-04-07T04:12:53.077 回答
1
may2 = Date.new(2012,5,2)
midnight = Time.zone.local(may2.year,may2.month,may2.day).beginning_of_day

2012 年 5 月 2 日星期三 00:00:00 UTC +00:00

midnight = Time.zone.local(may2.year,may2.month,may2.day).in_time_zone("Moscow").beginning_of_day

=> 2012 年 5 月 2 日,星期三 00:00:00 MSK +04:00

midnight = Time.zone.local(may2.year,may2.month,may2.day).in_time_zone("Alaska").beginning_of_day

=> 2012 年 5 月 1 日星期二 00:00:00 AKDT -08:00

注意,今天是错误的一天。

需要一种在正确的时区构造 TimeWithZone 的方法。

Time.zone="Alaska"
midnight = Time.zone.local(may2.year,may2.month,may2.day)

我真的不喜欢这个,因为据我所见,我刚刚改变了我所在区域的系统概念。这个想法是改变我的数据库搜索以匹配客户端的区域......所以,我必须保存区域并恢复它:

foo = Time.zone; Time.zone="Alaska"; midnight = Time.zone.local(may2.year,may2.month,may2.day); Time.zone = foo

似乎我应该能够调用 TimeWithZone.new(),但我不知道如何。

于 2013-01-30T22:34:11.883 回答
1

我知道这篇文章很旧,但是怎么样:

Time.zone.parse("12am")
于 2017-02-20T18:59:12.313 回答
0
ActiveSupport::TimeZone['Europe/London'].parse('30.07.2013') # 2013-07-29 23:00:00 UTC 
ActiveSupport::TimeZone['Asia/Magadan'].parse('30.07.2013') # 2013-07-29 12:00:00 UTC
于 2013-07-29T09:16:21.733 回答
0

正如 Leonid Shevtsov 提到的,在 ActiveSupport 2.3Date.beginning_of_day中不尊重Time.zone

如果您坚持使用 Rails 4.0 或 ActiveSupport 2.3,并且您需要使用自定义日期,我使用了另一种方法:

date = Date.new(2014,10,29)
date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone  #.beginning_of_day
date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone #.end_of_day

结果:

2.0.0-p247 :001 > date = Date.new(2014,10,29)
 => Wed, 29 Oct 2014 

2.0.0-p247 :002 > date.to_time.change(hour: 0, min: 0, sec: 0)
 => 2014-10-29 00:00:00 -0500 

2.0.0-p247 :003 > date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone
 => Wed, 29 Oct 2014 05:00:00 UTC +00:00 

2.0.0-p247 :004 > date.to_time.change(hour: 23, min: 59, sec: 59)
 => 2014-10-29 23:59:59 -0500 

2.0.0-p247 :005 > date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone
 => Thu, 30 Oct 2014 04:59:59 UTC +00:00 

我使用 .beginning_of_day 到 .end_of_day 的原始失败模型范围无法工作:

scope :on_day, ->(date) { where( created_at: date.beginning_of_day..date.end_of_day ) }

而且,这就是修复它的原因,因为我无法升级到 Rails 4.0

scope :on_day, ->(date) { where( created_at: date.to_time.change(hour: 0, min: 0, sec: 0).in_time_zone..date.to_time.change(hour: 23, min: 59, sec: 59).in_time_zone ) }
于 2016-02-17T23:58:24.863 回答