📜  Moment.js moment().format()函数

📅  最后修改于: 2022-05-13 01:56:36.255000             🧑  作者: Mango

Moment.js moment().format()函数

moment().format()函数用于根据用户需要格式化日期。该格式可以作为参数传递给此函数的字符串形式提供。

句法:

moment().format(String);

参数:此函数接受字符串类型的单个参数,它定义了格式。

返回值:此函数返回日期。

力矩模块的安装:

  1. 您可以访问安装时刻模块的链接。您可以使用此命令安装此软件包。
    npm install moment
  2. 安装 moment 模块后,您可以使用命令在命令提示符下检查您的moment版本。
    npm version moment
  3. 之后,您可以创建一个文件夹并添加一个文件,例如 index.js,如下所示。

示例 1:文件名:index.js

// 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);

运行程序的步骤:

  1. 项目结构将如下所示:
  2. 使用以下命令运行index.js文件:
    node index.js

    输出:

    Friday, July 17th 2020, 4:28:30 pm
    

示例 2:文件名:index.js

// 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);

运行程序的步骤:

  1. 项目结构将如下所示:
  2. 使用以下命令运行index.js文件:
    node index.js

    输出:

    Result: Friday, July 17th 2020
    

参考: https://momentjs.com/docs/#/displaying/format/