当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。