📜  Node.js Date.preparse() API

📅  最后修改于: 2022-05-13 01:56:50.547000             🧑  作者: Mango

Node.js Date.preparse() API

date-and-time.Date.preparse()是用于操作 JS 日期和时间模块的函数的极简集合,用于根据特定模式预解析日期。

所需模块:通过 npm 安装模块或在本地使用它。

  • 通过使用 npm。
npm install date-and-time --save
  • 通过使用 CDN 链接。

句法:

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.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

输出:

{
  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