1
在Elixir中,將Ecto.DateTime
轉換爲整數毫秒的最佳方法是什麼?將Ecto.DateTime轉換爲毫秒
我看到了this example,我相信我已經適應了它幾毫秒,但我想知道是否有任何告誡我的方法。
(((datetime
|> Ecto.DateTime.to_erl
|> :calendar.datetime_to_gregorian_seconds
|> Kernel.-(62167219200)) * 1000000) + datetime.usec)
|> div(1000)