1、返回当前日期截止时的时间戳:

post.createtime = moment().unix();
let stime = moment(moment.unix(moment().unix()).format("YYYY-MM-DD")).unix();
let etime = moment(moment(moment.unix(stime)).add(, "d")).unix();

2、返回当前日期:

moment().unix().toDate()

3、格式化返回当前日期:

moment().unix().toDate().format("YYYY-MM-DD")
05-27 03:06