date-and-time.Date.compile()是用於操作 JS 日期和時間模塊的極簡函數集合,用於為解析器編譯格式字符串。
所需模塊:通過 npm 安裝模塊或在本地使用它。
- 通過使用 npm。
npm install date-and-time --save
- 通過使用 CDN 鏈接。
<script src="/path/to/date-and-time.min.js"></script>
用法:
compile(formatString)
參數:該方法以格式字符串為參數。
返回值:此方法返回格式化的字符串日期。
範例1:
index.js
// Node.js program to demonstrate the
// Date.compile() method
// Importing http module
const date = require('date-and-time')
// Creating object of current date and time
// by using Date()
const now = new Date('07-03-2021');
// Getting pattern for the future use
// by using date.compile() method
const pattern = date.compile('D/M/YYYY');
// Getting formatted date and time
// by using format() method
const value = date.format(now,pattern)
// Display the result
console.log("Formatted date and time:" + value)
使用以下命令運行index.js文件:
node index.js
輸出:
Formatted date and time:1/1/1970
範例2:
index.js
// Node.js program to demonstrate the
// Date.compile() method
// Importing module
const date = require('date-and-time')
// Creating object of current date and time
// by using Datw()
const now = new Date('07-03-2021');
// Getting pattern for the future use
// by using date.compile() method
const pattern = date.compile('M/D/YYYY');
// Parsing the date and time
// by using date.parse() method
const value = date.parse(now.toLocaleDateString(), pattern);
// Display the result
console.log("Formatted date and time:" + value)
使用以下命令運行index.js文件:
node index.js
輸出:
Formatted date and time: Sat Jul 03 2021 00:00:00 GMT+0530 (India Standard Time)
參考:https://github.com/knowledgecode/date-and-time
相關用法
- Node.js GM drawLine()用法及代碼示例
- Node.js GM drawArc()用法及代碼示例
- Node.js GM drawPolyline()用法及代碼示例
- Node.js GM drawBezier()用法及代碼示例
- Node.js GM drawCircle()用法及代碼示例
- Node.js GM drawEllipse()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js Date.compile() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。