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


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


date-and-time.Date.isValid()是用於操作 JS 日期和時間模塊的極簡函數集合,用於使用字符串格式驗證特定日期和時間。

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

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

用法:

isValid(arg1[, arg2])

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

  • arg1:它是日期和時間對象。
  • arg2:它是給定日期的字符串格式。

返回值:當且僅當條款經過驗證時,此方法才返回 true。



範例1:

index.js


// Node.js program to demonstrate the  
// Date.isValid() method
  
// Importing date-and-time module
const date = require('date-and-time')
  
// Parsing the date and time
// by using date.parse() method
const status = date.isValid('29-02-2015', 'DD-MM-YYYY');
  
// Display the result
if(status)
  console.log("Date is valid")
else
  console.log("Date is not invalid")

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

node index.js

輸出:

Date is not invalid

範例2:

index.js


// Node.js program to demonstrate the  
// Date.isValid() method
  
// Importing date-and-time module
const date = require('date-and-time')
  
// Pre parsing the date and time
// by using preparse() method
const result = date.preparse('2015/01/02 23:14:05', 'YYYY/MM/DD HH:mm:ss');
  
// Validating the terms
// by using date.isValid() method
const status = date.isValid(result);
  
// Display the result
if(status)
  console.log("Date is valid")
else
  console.log("Date is not invalid")

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

node index.js

輸出:

Date is valid

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




相關用法


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