当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Moment.js moment().format()用法及代码示例


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

用法:

moment().format(String);

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

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

力矩模块的安装:



  1. 您可以访问“安装力矩”模块的链接。您可以使用此命令安装此软件包。
    npm install moment
  2. 安装力矩模块后,可以使用命令在命令提示符下检查力矩版本。
    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/

相关用法


注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Moment.js moment().format() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。