elixir中的utc_offset返回错误的时区偏移。

问题描述 投票:1回答:1

我可能没有理解这里的一些东西 - 但这可能看起来更直截了当。

iex> {:ok, datetime_with_tz} = DateTime.now("Europe/London", Tzdata.TimeZoneDatabase)
{:ok, #DateTime<2020-05-02 21:57:11.136512+01:00 BST Europe/London>}

iex> DateTime.utc_now
~U[2020-05-02 20:57:21.869835Z]

//correct as it's already in utc
iex> DateTime.utc_now.utc_offset
0 

// incorrect this should be 3600 i.e +01:00 hours of offset and not 0 .. ?
iex> datetime_with_tz.utc_offset
0  
time timezone elixir phoenix-framework
1个回答
4
投票

这是因为伦敦通常是UTC+00:00,其目前+01:00,由于夏季时间(BST代表英国夏季时间)。

DateTime有 std_offset 来处理这个问题。

iex(1)> {:ok, datetime_with_tz} = DateTime.now("Europe/London", Tzdata.TimeZoneDatabase) 
iex(2)> datetime_with_tz.std_offset
3600
© www.soinside.com 2019 - 2024. All rights reserved.