JS原生获取农历新写法
2021-10-25 10:03:00 # 编程 # 前端
1
2
3
4
5
6
7
8
9
const time = new Date('2020-01-01').getTime()
new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'full'}).format(time)
// '2019己亥年腊月初七星期三'
new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'long'}).format(time)
// '2019己亥年腊月初七'
new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'medium'}).format(time)
// '2019年腊月初七'
new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'short'}).format(time)
// '2019/12/7'

更多用法查看MDN WEB