date-and-time.Date.transform() 方法用於將日期和時間從現有字符串格式轉換為新的字符串格式。
所需模塊:通過 npm 安裝模塊或在本地使用它。
- 通過使用 npm:
npm install date-and-time --save
- 通過使用 CDN 鏈接:
<script src="/path/to/date-and-time.min.js"></script>
用法:
const transform(dateString, arg1, arg2[, utc])
參數:此 API 將以下參數作為參數。
- dateString:日期的字符串對象。
- arg1:現有的字符串格式。
- arg2:新的字符串格式。
返回值:此方法返回一個格式化字符串。
範例1:
index.js
// Node.js program to demonstrate the
// Date.transform() method
// Importing http module
const date = require('date-and-time')
// Creating object of current date and time
// by using Datw()
const now = new Date(07-03-2021);
// Changing the format of date and time
// by using date.transform() api
const value = date.transform(
now.toLocaleDateString(),
'D/M/YYYY', 'YYYY/M/D');
// Display the result
console.log("transformed date and time:- "
+ value)
輸出:
transformed date and time:- 1970/1/1
範例2:
index.js
// Node.js program to demonstrate the
// Date.transform() method
// Importing http module
const date = require('date-and-time')
// Changing the format of date and time
// by using date.transform() api
const value = date.transform(
'23:14:05 GMT+0900',
'HH:mm:ss [GMT]Z', 'YYYY/M/D');
// Display the result
console.log("transformed date and time:- "
+ value)
輸出:
transformed date and time:- 1970/1/1
參考: https://github.com/knowledgecode/date-and-time#transformdatestring-arg1-arg2-utc
相關用法
- Node.js console.timeLog()用法及代碼示例
- Node.js x509.toLegacyObject()用法及代碼示例
- Node.js fs.fsyncSync()用法及代碼示例
- Node.js process.nextTick()用法及代碼示例
- Node.js GM drawLine()用法及代碼示例
- Node.js GM drawArc()用法及代碼示例
- Node.js GM drawPolyline()用法及代碼示例
- Node.js GM drawBezier()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js date-and-time Date.transform() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。