📜  Node.js 日期和时间 Date.transform() 方法

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

Node.js 日期和时间 Date.transform() 方法

date-and-time.Date.transform()方法用于将日期和时间从现有的字符串格式转换为新的字符串格式。

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

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

句法:

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)


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

示例 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