填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

formatDate

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

Formats a date according to locale rules.

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

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

The date to format, as a Date, or a number (milliseconds since UTC epoch) or an ISO date-time string.

format string

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

The date-time components to include. See DatePipe for details.

locale string

一个区域代码,用来表示要使用的区域格式规则。

A locale code for the locale format rules to use.

timezone string

时区。可以是 GMT 中的时区偏移(如 '+0430'),或一个标准的 UTC/GMT 或美国大陆时区的缩写。 如果没有指定,就会使用宿主系统中的设定。

The time zone. A time zone offset from GMT (such as '+0430'), or a standard UTC/GMT or continental US time zone abbreviation. If not specified, uses host system settings.

可选. 默认值是 `undefined`.
返回值

格式化之后的日期字符串。

string: The formatted date string.

参见