-
Notifications
You must be signed in to change notification settings - Fork 396
09 如何格式化日期
孙正华 edited this page Jul 26, 2018
·
3 revisions
使用 Moment 可以很方便地在服务端格式化日期。
安装 moment:
$ npm install --save moment
最常用的函数就是 moment(timeString).format('YYYY-MM-DD')
,其中 timeString 是日期时间字符串,为空则为当前时间。
https://github.com/eshengsky/iBlog2/blob/master/routes/admin.js#L165-L166
moment(item.CreateTime).format('YYYY-MM-DD HH:mm:ss')