formatDate

基于区域规则格式化日期。

Formats a date according to locale rules.

查看"说明"...

formatDate(value: string | number | Date, format: string, locale: string, timezone?: string): string
      
      formatDate(value: string | number | Date, format: string, locale: string, timezone?: string): string
    
参数
value string | number | Date
format string
locale string
timezone string

可选. 默认值是 undefined.

返回值

string

说明

这里的:

Where:

  • value 是一个日期、数字(从 UTC 时代以来的毫秒数)或 ISO 字符串 (https://www.w3.org/TR/NOTE-datetime)。

    value is a Date, a number (milliseconds since UTC epoch) or an ISO string (https://www.w3.org/TR/NOTE-datetime).

  • format 表示要包含的日期/时间部件。欲知详情,参见 DatePipe

    format indicates which date/time components to include. See DatePipefor more details.

  • locale 是一个 string,用来定义要使用的区域。

    locale is a string defining the locale to use.

  • timezone 用在格式化中。它能理解 UTC/GMT 和美国大陆时区缩写,但对于一般用途则使用时区偏移(比如 '+0430')。 如果没有指定,则使用宿主系统中的设定。

    timezone to be used for formatting. It understands UTC/GMT and the continental US time zone abbreviations, but for general use, use a time zone offset (e.g. '+0430'). If not specified, host system settings are used.

欲知详情,参见 DatePipe

See DatePipefor more details.