Moment.js moment().format()
moment().format()函数的作用是根据用户需要格式化日期。格式可以以字符串形式提供,并作为参数传递给此函数。
语法:
moment().format(String);
形参:
此函数接受单个字符串类型形参,它定义了格式。
返回值:
该函数返回日期。
moment模块安装:
- 您可以访问链接安装moment模块。可以使用此命令安装该软件包。
npm install moment
- 安装moment模块后,您可以在命令提示符中使用该命令检查您的moment版本。
npm version moment
- 之后,您可以创建一个文件夹,并添加一个文件,例如index.js。
示例1
// Requiring the module
const moment = require('moment');
// The format() function to format the date
var formatedDate = moment().format(
"dddd, MMMM Do YYYY, h:mm:ss a");
console.log(formatedDate);
运行程序的步骤:
- 项目结构如下所示:
-
使用下面的命令运行index.js文件:
node index.js
输出:
Friday, July 17th 2020, 4:28:30 pm
示例2
// Requiring the module
const moment = require('moment');
function format_Date(date){
return moment().format("dddd, MMMM Do YYYY");
}
var result = format_Date(moment);
console.log("Result:", result);
运行程序的步骤:
- 项目结构如下所示:
-
使用下面的命令运行index.js文件:
node index.js
输出:
Result: Friday, July 17th 2020