日期格式化
字符串类型转为Date类型:
new Date('2019-08-08 20:28:28')
Date类型转为字符串,引用moment.js
import moment from 'moment';
const now = new Date() // Thu Aug 08 2019 20:50:31 GMT+0800 (中国标准时间) const date = now .setDate(now .getDate() - 90); //Thu May 08 2019 20:50:31 GMT+0800 (中国标准时间) let _date = moment(date).startOf('day').format("YYYY-MM-DD HH:mm:ss") // 2019-05-08 00:00:00 let _date = moment(date).endOf('day').format("YYYY-MM-DD HH:mm:ss") // 2019-05-08 23:59:59