moment.js 时间格式转换
moment.js 时间转化 bug
格式错误 bug
02:00 => 14:00
format
HH
与hh
HH === 24 小时制
hh === 12 小时制
new Date(1580796000000)
// Tue Feb 04 2020 14:00:00 GMT+0800 (China Standard Time)
moment(1580796000000).format('YYYY MM DD, hh:mm:ss');
// "2020 02 04, 02:00:00"
moment(1580796000000).format('YYYY-MM-DD, HH:mm:ss');
// "2020-02-04, 14:00:00"
官方 API
https://momentjs.com/docs/#/parsing/string-format/
https://momentjs.com/docs/#/displaying/format/
refs
xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有️xgqfrms, 禁止转载 ️,侵权必究️!