如何在 Elixir 中将时间戳转换为日期时间?

问题描述 投票:0回答:5

如何将毫秒时间转换为

Ecto.DateTime

以毫秒为单位的时间是自 1970 年 1 月 1 日 00:00:00 UTC 以来经过的毫秒数。

elixir ecto
5个回答
18
投票

将时间戳转换为日期时间

DateTime.from_unix(1466298513463, :millisecond)

了解更多详情 https://hexdocs.pm/elixir/main/DateTime.html#from_unix/3


15
投票

现在做起来非常简单:

timestamp |> DateTime.from_unix!(:millisecond) |> Ecto.DateTime.cast!

4
投票

这是在保持毫秒精度的同时做到这一点的一种方法:

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>

0
投票

看起来可以通过以下方式完成,但是会丢失一些毫秒。

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

0
投票

DateTime.from_unix 将单位作为第二个参数。 因此,传入: :millisecond 或 :microsecond 关于您想要转换的值。

© www.soinside.com 2019 - 2024. All rights reserved.