本文介绍了在Moment.js中,您如何获得当前的财务季度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有一个简单的/内置的方式来计算当前的财务季度?



例如:




  • Jan-Mar:1st

  • Apr-Jul:2nd

  • Jul-Sept:3rd

  • Oct-Dec:4th


解决方案

现在支持这一点。一样简单:

  moment('2014-12-01')。utc()。quarter()//输出4 
moment()。quarter(); //输出当前季度即2


Is there a simple/built in way of figuring out the current financial quarter?

ex:

  • Jan-Mar: 1st
  • Apr-Jul: 2nd
  • Jul-Sept: 3rd
  • Oct-Dec: 4th

解决方案

This is now supported in moment. As easy as:

moment('2014-12-01').utc().quarter() //outputs 4
moment().quarter(); //outputs current quarter ie. 2

这篇关于在Moment.js中,您如何获得当前的财务季度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 02:43