Intl.DateTimeFormat API 用来处理特定语言环境的日期格式。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| const date = new Date();
// Sunday, January 10, 2021 at 9:02:29 PM GMT+8 new Intl.DateTimeFormat('en-US', { dateStyle: 'full', timeStyle: 'long'}).format(date)
// 21/1/10 中国标准时间 下午9:02:29.315 new Intl.DateTimeFormat('zh-CN', { year: '2-digit', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric', fractionalSecondDigits: 3, timeZoneName: 'long' }).format(date)
|
参考:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat