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


Moment.js moment().toObject()用法及代码示例


moment().toObject() 方法用于将 Moment 对象作为 JavaScript 对象返回,并在属性中包含日期参数。

用法:

moment().toObject();

参数:该方法不接受任何参数:

返回值:此方法以 JavaScript 对象的形式返回持续时间。

注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。

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

moment模块的安装:

npm install moment

以下示例将演示 Moment.js moment().toObject() 方法。

示例 1:

Javascript


const moment = require('moment'); 
  
let momentOne = moment(); 
let momentTwo = moment() 
                .add(15, 'months') 
                .add(10, 'days') 
                .add(24, 'seconds'); 
  
console.log( 
    "Object form of momentOne is:", 
    momentOne.toObject() 
) 
console.log( 
    "Object form of momentTwo is:", 
    momentTwo.toObject() 
)

输出:

Object form of momentOne is: {
  years: 2022,
  months: 6,
  date: 10,
  hours: 23,
  minutes: 36,
  seconds: 3,
  milliseconds: 659
}
Object form of momentTwo is: {
  years: 2023,
  months: 9,
  date: 20,
  hours: 23,
  minutes: 36,
  seconds: 27,
  milliseconds: 659
}

示例 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( 
    "Object form of momentA is:", 
    momentA.toObject() 
) 
console.log( 
    "Object form of momentB is:", 
    momentB.toObject() 
)

输出:

Object form of momentA is: {
  years: 2022,
  months: 11,
  date: 25,
  hours: 0,
  minutes: 0,
  seconds: 0,
  milliseconds: 0
}
Object form of momentB is: {
  years: 2017,
  months: 5,
  date: 4,
  hours: 1,
  minutes: 15,
  seconds: 30,
  milliseconds: 100
}

参考: https://momentjs.com/docs/#/displaying/as-object/



相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().toObject() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。