如何格式化mongodb数据库中存的时间。
发布于 9 年前 作者 yaojaa 6298 次浏览 最后一次编辑是 8 年前 来自 问答

默认是这个样子的。 Wed Oct 14 2015 11:06:01 GMT+0800 (中国标准时间)

怎么转的好看点,几小时前什么的。?

1 回复

用moment库 示例如下 详细用法去查看moment().format()的API

moment().format();                                // "2014-09-08T08:02:17-05:00" (ISO 8601)
moment().format("dddd, MMMM Do YYYY, h:mm:ss a"); // "Sunday, February 14th 2010, 3:25:50 pm"
moment().format("ddd, hA");                       // "Sun, 3PM"
moment('gibberish').format('YYYY MM DD');         // "Invalid date"
回到顶部