Elixir语言中 NaiveDateTime.from_erl
相关用法介绍如下。
用法:
from_erl(tuple, microsecond \\ {0, 0}, calendar \\ Calendar.ISO)
@spec from_erl(:calendar.datetime(), Calendar.microsecond(), Calendar.calendar()) ::
{:ok, t()} | {:error, atom()}
将 Erlang 日期时间元组转换为
结构。NaiveDateTime
尝试转换无效的 ISO 日历日期将产生错误元组。
例子
iex> NaiveDateTime.from_erl({{2000, 1, 1}, {13, 30, 15}})
{:ok, ~N[2000-01-01 13:30:15]}
iex> NaiveDateTime.from_erl({{2000, 1, 1}, {13, 30, 15}}, {5000, 3})
{:ok, ~N[2000-01-01 13:30:15.005]}
iex> NaiveDateTime.from_erl({{2000, 13, 1}, {13, 30, 15}})
{:error, :invalid_date}
iex> NaiveDateTime.from_erl({{2000, 13, 1}, {13, 30, 15}})
{:error, :invalid_date}
相关用法
- Elixir NaiveDateTime.from_erl!用法及代码示例
- Elixir NaiveDateTime.from_gregorian_seconds用法及代码示例
- Elixir NaiveDateTime.from_iso8601用法及代码示例
- Elixir NaiveDateTime.from_iso8601!用法及代码示例
- Elixir NaiveDateTime.utc_now用法及代码示例
- Elixir NaiveDateTime.truncate用法及代码示例
- Elixir NaiveDateTime.convert!用法及代码示例
- Elixir NaiveDateTime.new!用法及代码示例
- Elixir NaiveDateTime.to_erl用法及代码示例
- Elixir NaiveDateTime.diff用法及代码示例
- Elixir NaiveDateTime.to_iso8601用法及代码示例
- Elixir NaiveDateTime.local_now用法及代码示例
- Elixir NaiveDateTime.compare用法及代码示例
- Elixir NaiveDateTime.to_string用法及代码示例
- Elixir NaiveDateTime.new用法及代码示例
- Elixir NaiveDateTime.convert用法及代码示例
- Elixir NaiveDateTime.to_time用法及代码示例
- Elixir NaiveDateTime.to_date用法及代码示例
- Elixir NaiveDateTime.to_gregorian_seconds用法及代码示例
- Elixir NaiveDateTime.add用法及代码示例
- Elixir NaiveDateTime用法及代码示例
- Elixir Node.ping用法及代码示例
- Elixir Node.start用法及代码示例
- Elixir StringIO.flush用法及代码示例
- Elixir Calendar.ISO.date_to_string用法及代码示例
注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 NaiveDateTime.from_erl(tuple, microsecond \\ {0, 0}, calendar \\ Calendar.ISO)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。