标签:
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(1, "d")).unix();
2、返回当前日期:
moment().unix().toDate()
3、格式化返回当前日期:
moment().unix().toDate().format("YYYY-MM-DD")
标签:
原文地址:http://www.cnblogs.com/caiya928/p/5576678.html