dayjs获取上个月天数
时间: 2023-07-11 18:10:05 浏览: 291
获取Python中当前月份的天数.zip
要获取上个月的天数,可以使用dayjs的subtract()方法获取上个月的日期,然后使用daysInMonth()方法获取该月的天数。具体代码如下:
```
const dayjs = require('dayjs');
// 获取上个月的日期
const lastMonth = dayjs().subtract(1, 'month');
// 获取上个月的天数
const lastMonthDays = lastMonth.daysInMonth();
console.log(lastMonthDays);
```
这段代码首先使用`dayjs()`获取当前日期,然后使用`subtract()`方法减去一个月,得到上个月的日期。接着使用`daysInMonth()`方法获取上个月的天数,并将结果输出到控制台。
阅读全文