dateformat
是一个 Node.js 的 npm 包,用于格式化时间戳为指定的时间格式。他可以处理 JavaScript 中的 Date 或者能被 Date() 构造函数处理的参数类型。
安装
可以通过 npm 安装 dateformat
:
npm install dateformat
安装成功后,就可以在项目中使用该模块了。
使用方法
dateformat
提供了非常灵活且多样化的时间格式。这里我们主要介绍一些常见的用法。
基本用法
以下代码展示了如何将当前时间戳格式化输出。
const dateFormat = require('dateformat'); const now = new Date(); console.log(dateFormat(now, "dddd, mmmm dS, yyyy, h:MM:ss TT")); // 输出:Monday, June 14th, 2021, 3:28:06 PM
以上代码中的参数 "dddd, mmmm dS, yyyy, h:MM:ss TT"
是时间格式,可以根据需要进行修改。其中一些常用的时间格式如下:
字母 | 说明 |
---|---|
d | 日期中的天 |
m | 日期中的月 |
y | 年份 |
h | 小时 |
M | 分钟 |
s | 秒钟 |
l | 毫秒 |
T | 时间上下午 |
其他用法
以下是一些其他用法示例。
-- -------------------- ---- ------- ----- --- - --- ------- -- ------------ ---- --------------------------- --------------------------------- -- ----------------------- -- --------- ---- -- ----- ---- - --------------- - ------ ---- - ------- ------------------ -- --------------------------- -- --- -------- ---- ---------------------------------- -------------- ----------- --------- ------ -- ------------- ------------ --
总结
dateformat
是一个十分好用的时间格式化 Node.js 模块,能够简单地将日期格式化为所需的格式。通过本文的介绍,相信读者已经学会了如何对时间进行格式化操作。当你需要对时间进行展示的时候,这个模块十分有效并且提供了极高的扩展性,也可以使代码极为简洁。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/40235