moment().format()函數用於根據用戶需要格式化日期。該格式可以字符串形式提供,並將其作為參數傳遞給此函數。
用法:
moment().format(String);
參數:此函數接受字符串類型的單個參數,該參數定義了格式。
返回值:此函數返回日期。
力矩模塊的安裝:
- 您可以訪問“安裝力矩”模塊的鏈接。您可以使用此命令安裝此軟件包。
npm install moment
- 安裝力矩模塊後,可以使用命令在命令提示符下檢查力矩版本。
npm version moment
- 之後,您可以創建一個文件夾並添加一個文件,例如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);
運行程序的步驟:
- 項目結構將如下所示:
- 使用以下命令運行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);
運行程序的步驟:
- 項目結構將如下所示:
- 使用以下命令運行index.js文件:
node index.js
輸出:
Result:Friday, July 17th 2020
相關用法
- PHP Ds\Set contains()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP abs()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- PHP Ds\Set first()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- p5.js mag()用法及代碼示例
- PHP ord()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js value()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js nf()用法及代碼示例
注:本文由純淨天空篩選整理自gouravhammad大神的英文原創作品 Moment.js moment().format() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。