moment().quarter() 方法用于获取或设置 Moment 对象的四分之一。一年有 4 个季度,因此此方法接受 1 到 4 之间的值。超出该范围的值会将当前年份冒泡到下一年或上一年。
注意:当使用此方法设置季度时,Moment 的日期将保持不变。
用法:
moment().quarter( Number );
参数:该方法接受如上所述和如下所述的单个参数:
- Number:这是必须为 Moment 对象设置的季度。它是一个可选参数。
返回值:此方法返回 Moment 的当前季度。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
Moment.js 可以使用以下命令安装:
moment模块的安装:
npm install moment
以下示例将演示 Moment.js moment().quarter() 方法。
示例 1:
Javascript
const moment = require('moment');
console.log("Current Date:", moment().toString())
console.log("Current quarter is:", moment().quarter())
let quarter1 = moment().quarter(1);
console.log(
"Moment with Quarter of 1 is:",
quarter1.toString()
)
let quarter2 = moment().quarter(2);
console.log(
"Moment with Quarter of 2 is:",
quarter2.toString()
)
let quarter3 = moment().quarter(3);
console.log(
"Moment with Quarter of 3 is:",
quarter3.toString()
)
let quarter4 = moment().quarter(4);
console.log(
"Moment with Quarter of 4 is:",
quarter4.toString()
)
输出:
Current Date: Sat Jul 16 2022 23:52:58 GMT+0530
Current quarter is: 3
Moment with Quarter of 1 is: Sun Jan 16 2022 23:52:58 GMT+0530
Moment with Quarter of 2 is: Sat Apr 16 2022 23:52:58 GMT+0530
Moment with Quarter of 3 is: Sat Jul 16 2022 23:52:58 GMT+0530
Moment with Quarter of 4 is: Sun Oct 16 2022 23:52:58 GMT+0530
示例 2:
Javascript
const moment = require('moment');
console.log("Current Date:", moment().toString())
console.log("Current quarter is:", moment().quarter())
let quarterOutsideRange = moment().quarter(10);
console.log(
"Moment with Quarter of 10 is:",
quarterOutsideRange.toString()
)
let quarterOutsideRangeNegative = moment().quarter(-2);
console.log(
"Moment with Quarter of -2 is:",
quarterOutsideRangeNegative.toString()
)
输出:
Current Date: Sat Jul 16 2022 23:52:58 GMT+0530
Current quarter is: 3
Moment with Quarter of 10 is: Tue Apr 16 2024 23:52:58 GMT+0530
Moment with Quarter of -2 is: Fri Apr 16 2021 23:52:58 GMT+0530
参考:https://momentjs.com/docs/#/get-set/quarter/
相关用法
- 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().set()用法及代码示例
- Moment.js moment().toString()用法及代码示例
- Moment.js moment().local()用法及代码示例
- Moment.js moment().min()用法及代码示例
- Moment.js moment().get()用法及代码示例
- Moment.js moment().startOf()用法及代码示例
- 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().quarter() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。