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


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


moment().subtract() 方法用于从 Moment 对象中减去给定的时间单位。该单位可以以单位的所有公认变体形式指定,包括其复数形式和缩写形式。

用法:

moment().subtract(Number, String)
OR
moment().subtract(Duration)
OR
moment().subtract(Object)

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

  • Number:它是一个数字,表示必须减去的时间值。
  • String: 它是一个字符串,表示必须减去的时间单位。
  • Duration: 这是一个 Duration 对象,其中包含需要减去的时间。
  • Object: 它是一个对象,可以用来表示所有可以减去 Moment 的时间值。

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

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

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

moment模块的安装:

npm install moment

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

示例 1:

Javascript


const moment = require('moment'); 
  
let momentA = moment(); 
console.log( 
    "Current MomentA is:", momentA.toString() 
); 
  
momentA.subtract(5, 'hours'); 
console.log( 
    "Current MomentA is:", momentA.toString() 
); 
  
momentA.subtract(15, 'minutes'); 
console.log( 
    "Current MomentA is:", momentA.toString()); 
  
momentA.subtract(2, 'days'); 
console.log( 
    "Current MomentA is:", momentA.toString() 
); 
  
momentA.subtract(2, 'months'); 
console.log( 
    "Current MomentA is:", momentA.toString() 
); 
  
momentA.subtract(10, 'years'); 
console.log( 
    "Current MomentA is:", momentA.toString() 
);

输出:

Current MomentA is: Tue Jul 26 2022 01:24:42 GMT+0530
Current MomentA is: Tue Jul 26 2022 11:24:42 GMT+0530
Current MomentA is: Tue Jul 26 2022 12:09:42 GMT+0530
Current MomentA is: Sun Jul 31 2022 12:09:42 GMT+0530
Current MomentA is: Tue Jan 31 2023 12:09:42 GMT+0530
Current MomentA is: Fri Jan 31 2025 12:09:42 GMT+0530

示例 2:

Javascript


const moment = require('moment'); 
  
let momentB = moment(); 
console.log( 
    "Current MomentB is:", momentB.toString() 
); 
  
momentB.subtract({ hours: 10, minutes: 50, seconds: 25 }); 
console.log( 
    "Current MomentB is:", momentB.toString() 
); 
  
let momentC = moment(); 
console.log( 
    "Current MomentC is:", momentC.toString() 
); 
  
momentC.subtract({ days: 10, months: 15, years: 2 }); 
console.log( 
    "Current MomentC is:", momentC.toString() 
);

输出:

Current MomentB is: Tue Jul 26 2022 01:24:42 GMT+0530
Current MomentB is: Tue Jul 26 2022 06:35:12 GMT+0530
Current MomentC is: Tue Jul 26 2022 01:24:42 GMT+0530
Current MomentC is: Mon May 31 2038 01:24:42 GMT+0530

参考: https://momentjs.com/docs/#/manipulating/subtract/



相关用法


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