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


Node.js Date.preparse()用法及代碼示例


date-and-time.Date.preparse()是用於操作 JS 日期和時間模塊的極簡函數集合,用於根據某種模式預先解析日期。

所需模塊:通過 npm 安裝模塊或在本地使用它。

  • 通過使用 npm。
npm install date-and-time --save
  • 通過使用 CDN 鏈接。
<script src="/path/to/date-and-time.min.js"></script>

用法:

preparse(dateString, arg)

參數:此方法采用以下參數作為參數:

  • dateString:它是日期的字符串對象。
  • arg:這是所需的日期格式。

返回值:此方法返回解析的日期和時間。



範例1:

index.js


// Node.js program to demonstrate the  
// Date.preparse() method
  
// Importing module
const date = require('date-and-time')
  
// Creating object of current date and time 
// by using Date() 
const now  =  new Date('07-03-2021');
  
// Pre parsing the date and time
// by using date.preparse() method
const value = date.preparse(now.toLocaleDateString(),'D/M/YYYY');
  
// Display the result
console.log(value)

使用以下命令運行index.js文件:

node index.js

輸出:

{
  Y:2021,   
  M:3,      
  D:7,      
  H:0,      
  A:0,      
  h:0,      
  m:0,      
  s:0,      
  S:0,      
  Z:0,      
  _index:8, 
  _length:8,
  _match:3  
}

範例2:

index.js


// Node.js program to demonstrate the  
// Date.preparse() method
  
// Importing module
const date = require('date-and-time')
  
// Pre parsing the date and time
// by using date.preparse() method
const value = date.preparse('23:14:05 GMT+0900','HH:mm:ss [GMT]Z');
  
// Display the result
console.log("pre parsed date and time:" + value._length)

使用以下命令運行index.js文件:

node index.js

輸出:

pre parsed date and time:17

參考:https://github.com/knowledgecode/date-and-time




相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js Date.preparse() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。