我可能没有理解这里的一些东西 - 但这可能看起来更直截了当。
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
这是因为伦敦通常是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