如何将毫秒时间转换为
Ecto.DateTime
?
以毫秒为单位的时间是自 1970 年 1 月 1 日 00:00:00 UTC 以来经过的毫秒数。
将时间戳转换为日期时间
DateTime.from_unix(1466298513463, :millisecond)
了解更多详情 https://hexdocs.pm/elixir/main/DateTime.html#from_unix/3
现在做起来非常简单:
timestamp |> DateTime.from_unix!(:millisecond) |> Ecto.DateTime.cast!
这是在保持毫秒精度的同时做到这一点的一种方法:
defmodule A do
def timestamp_to_datetime(timestamp) do
epoch = :calendar.datetime_to_gregorian_seconds({{1970, 1, 1}, {0, 0, 0}})
datetime = :calendar.gregorian_seconds_to_datetime(epoch + div(timestamp, 1000))
usec = rem(timestamp, 1000) * 1000
%{Ecto.DateTime.from_erl(datetime) | usec: usec}
end
end
演示:
IO.inspect A.timestamp_to_datetime(1466329342388)
输出:
#Ecto.DateTime<2016-06-19 09:42:22.388000>
看起来可以通过以下方式完成,但是会丢失一些毫秒。
timestamp = 1466298513463
base = :calendar.datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
seconds = base + div(timestamp, 1000)
erlang_datetime = :calendar.gregorian_seconds_to_datetime(seconds)
datetime = Ecto.DateTime.cast! erlang_datetime
DateTime.from_unix 将单位作为第二个参数。 因此,传入: :millisecond 或 :microsecond 关于您想要转换的值。