我得到的日期如下
const today = new Date();
现在我需要得到一年中的周数。我如何在打字稿上得到它?
我试过const todayFormated = this.datepipe.transform(today, 'W');
了,但它返回的是月份的周数而不是年份
我得到的日期如下
const today = new Date();
现在我需要得到一年中的周数。我如何在打字稿上得到它?
我试过const todayFormated = this.datepipe.transform(today, 'W');
了,但它返回的是月份的周数而不是年份
它是小写的'w'
: const todayFormated = this.datepipe.transform(today, 'w');
。
从角度文档:
一年中的星期 w 数字:最小数字 1... 53
月份 W 数字:1 位数字 1... 5