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


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


moment().set()方法用于为Moment对象设置给定的时间单位。该单位可以以单位的所有公认变体形式指定,包括其复数形式和缩写形式。还可以使用包含所有所需时间单位的对象来设置时间。

用法:

moment().set(String, Int)

OR

moment().set(Object(String, Int))

参数:该方法接受如上所述和如下所述的两个参数:

  • String:它是必须为 Moment 对象设置的时间单位。
  • Int: 这是必须设置的时间值。
  • Object: 时间还可以指定为包含所有时间单位及其值的 JSON 对象。

返回值:此方法从 Moment 对象返回给定时间单位的字符串。

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

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

moment模块的安装:

npm install moment

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

示例 1:

Javascript


const moment = require('moment'); 
  
let momentOne = moment(); 
  
momentOne.set('year', 2010); 
momentOne.set('month', 6); 
momentOne.set('date', 10); 
  
console.log("MomentOne is:", momentOne.toString()); 
console.log("MomentOne year:", momentOne.year()); 
console.log("MomentOne month:", momentOne.month()); 
console.log("MomentOne date:", momentOne.date()); 
  
let momentTwo = moment(); 
  
momentTwo.set('y', 2022); 
momentTwo.set('m', 8); 
momentTwo.set('d', 19); 
  
console.log("MomentTwo is:", momentTwo.toString()); 
console.log("MomentTwo year:", momentTwo.year()); 
console.log("MomentTwo month:", momentTwo.month()); 
console.log("MomentTwo date:", momentTwo.date());

输出:

MomentOne is: Sat Jul 10 2010 00:28:08 GMT+0530
MomentOne year: 2010
MomentOne month: 6
MomentOne date: 10
MomentTwo is: Fri Aug 12 2022 00:08:08 GMT+0530
MomentTwo year: 2022
MomentTwo month: 7
MomentTwo date: 12

示例 2:

Javascript


const moment = require('moment'); 
  
let moment1 = moment(); 
  
moment1.set('hour', 10); 
moment1.set('minute', 18); 
moment1.set('second', 30); 
moment1.set('millisecond', 150); 
  
console.log( 
    "moment1 is:", 
    moment1.toString() 
); 
console.log( 
    "moment1 hour:", 
    moment1.hour() 
); 
console.log( 
    "moment1 minute:", 
    moment1.minute() 
); 
console.log( 
    "moment1 second:", 
    moment1.second() 
); 
console.log( 
    "moment1 millisecond:", 
    moment1.millisecond() 
); 
  
let moment2 = moment(); 
  
moment2.set('hour', 6); 
moment2.set('minute', 30); 
moment2.set('second', 10); 
moment2.set('millisecond', 3500); 
  
console.log( 
    "moment2 is:", 
    moment2.toString() 
); 
console.log( 
    "moment2 hour:", 
    moment2.hour() 
); 
console.log( 
    "moment2 minute:", 
    moment2.minute() 
); 
console.log( 
    "moment2 second:", 
    moment2.second() 
); 
console.log( 
    "moment2 millisecond:", 
    moment2.millisecond() 
);

输出:

moment1 is: Sun Jul 24 2022 10:18:30 GMT+0530
moment1 hour: 10
moment1 minute: 18
moment1 second: 30
moment1 millisecond: 150
moment2 is: Sun Jul 24 2022 06:30:13 GMT+0530
moment2 hour: 6
moment2 minute: 30
moment2 second: 13
moment2 millisecond: 500

参考:https://momentjs.com/docs/#/get-set/set/



相关用法


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