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/
相关用法
- Moment.js moment().set()用法及代码示例
- Moment.js moment().startOf()用法及代码示例
- Moment.js moment().calender()用法及代码示例
- Moment.js moment().daysInMonth()用法及代码示例
- Moment.js moment().diff()用法及代码示例
- Moment.js moment().format()用法及代码示例
- Moment.js moment().from()用法及代码示例
- Moment.js moment().fromNow()用法及代码示例
- Moment.js moment().to()用法及代码示例
- Moment.js moment().toNow()用法及代码示例
- Moment.js moment().unix()用法及代码示例
- Moment.js moment().valueOf()用法及代码示例
- Moment.js moment().millisecond()用法及代码示例
- Moment.js moment().toString()用法及代码示例
- Moment.js moment().local()用法及代码示例
- Moment.js moment().min()用法及代码示例
- Moment.js moment().get()用法及代码示例
- Moment.js moment().isoWeeksInYear()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().utcOffset()用法及代码示例
- Moment.js moment().zone()用法及代码示例
- Moment.js moment().add()用法及代码示例
- Moment.js moment().inspect()用法及代码示例
- Moment.js moment().weeksInYear()用法及代码示例
- Moment.js moment().date()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().subtract() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。