利用moment把当前时间 格式化为‘YYYY-MM-DD HH:mm:ss‘

import moment from 'moment';

const timeFormat = 'YYYY-MM-DD HH:mm:ss';
const currentTime = moment(new Date()).format(timeFormat);
console.log('currentTime :', currentTime )

你可能感兴趣的:(JavaScript)