使用moment格式化日期

案例:本例是在react-native中格式化日期

1,引入moment

 

2,使用moment

例如:let startDate = moment('2018-09-27').format(YYYY-MM-DD);

 

moment使用详解:

格式化日期
当前时间:

moment().format('YYYY-MM-DD HH:mm:ss'); //2014-09-24 23:36:09
今天是星期几:
moment().format('d'); //3
转换当前时间的Unix时间戳:
moment().format('X');

 

posted @ 2019-03-07 16:08  hayabky  阅读(4106)  评论(0)    收藏  举报