當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。