Yutt's Blog

js日期库moment.js

2018/02/24 Share
1
2
3
4
5
6
7
8
9
moment.locale('zh-cn');
const date = moment("2018-2-15 19:20:01", "YYYY-MM-DD HH:mm:ss").calenda(null, {
sameDay: 'HH:mm',
nextDay: '[明天] HH:mm',
nextWeek: 'dddd',
lastDay: '[昨天] HH:mm',
lastWeek: '上周dd HH:mm',
sameElse: "YYYY年MM月DD日"
});
CATALOG