使用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');