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 | 表示要包含的日期/时间部件。欲知详情,参见 The date-time components to include. See |
locale | string | 一个区域代码,用来表示要使用的区域格式规则。 A locale code for the locale format rules to use. |
timezone | string | 时区。可以是 GMT 中的时区偏移(如 The time zone. A time zone offset from GMT (such as 可选. 默认值是 |
返回值
格式化之后的日期字符串。
string
: The formatted date string.