當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Elixir NaiveDateTime.to_date用法及代碼示例


Elixir語言中 NaiveDateTime.to_date 相關用法介紹如下。

用法:

to_date(map)
@spec to_date(Calendar.naive_datetime()) :: Date.t()

NaiveDateTime 轉換為 Date

因為 Date 不保存時間信息,在轉換過程中數據會丟失。

例子

iex> NaiveDateTime.to_date(~N[2002-01-13 23:00:07])
~D[2002-01-13]

相關用法


注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 NaiveDateTime.to_date(map)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。