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


Moment.js moment().toDate()用法及代碼示例


moment().toDate() 方法用於將 Moment 對象作為本機 JavaScript 對象返回。然後,該 Date 對象可以與本機 Date 方法一起使用或用於其他庫的支持。

用法:

moment().toDate();

參數:該方法不接受任何參數:

返回值:此方法返回本機 JavaScript 日期格式的 Moment 對象。

注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。

Moment.js 可以使用以下命令安裝:

moment模塊的安裝:

npm install moment

以下示例將演示 Moment.js moment().toDate() 方法。

示例 1:

Javascript


const moment = require('moment'); 
  
let momentOne = moment(); 
let momentTwo = moment().add(10, 'days'); 
let momentThree = moment().add(10, 'hours'); 
  
console.log( 
    "Native Date object of momentOne is:", 
    momentOne.toDate() 
) 
console.log( 
    "Native Date object of momentTwo is:", 
    momentTwo.toDate() 
) 
console.log( 
    "Native Date object of momentThree is:", 
    momentThree.toDate() 
)

輸出:

Native Date object of momentOne is: 2022-07-10T17:24:21.114Z
Native Date object of momentTwo is: 2022-07-20T17:24:21.114Z
Native Date object of momentThree is: 2022-07-11T03:24:21.115Z

示例 2:

Javascript


const moment = require('moment'); 
  
let momentA = moment('25/12/2022', 'DD/MM/YYYY'); 
let momentB = moment({ 
    year: 2017, month: 5, day: 4, 
    hour: 1, minute: 15, second: 30, 
    millisecond: 100 
}); 
  
console.log( 
    "Native Date object of momentA is:", 
    momentA.toDate() 
) 
console.log( 
    "Native Date object of momentB is:", 
    momentB.toDate() 
)

輸出:

Native Date object of momentA is: 2022-12-24T18:30:00.000Z
Native Date object of momentB is: 2017-06-03T19:45:30.100Z

參考: https://momentjs.com/docs/#/displaying/as-javascript-date/



相關用法


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