dayjs一些常用封装

3 篇文章 0 订阅
这篇博客介绍了如何使用dayjs库进行日期和时间的常见操作,包括获取今日、昨日、明日的日期,计算近n天、n月的时间段,以及判断时间先后和是否为同一时间的方法。
摘要由CSDN通过智能技术生成
  • 今日 昨日 明日
		// 今日
        dayjs().format('YYYY-MM-DD')
        // 昨日   subtract 第一个参数:相对于当前时间需要减去的数量   第二个参数:相对于当前时间需要计算的单位(day,week,month,year)
        dayjs().subtract(1, 'day').format('YYYY-MM-DD')
        // 明日   subtract 第一个参数:相对于当前时间需要加上的数量   第二个参数:相对于当前时间需要计算的单位(day,week,month,year)
        dayjs().add(1, 'day').format('YYYY-MM-DD')
  • 近n天
  		const getRecentlyDays = (n) => {
            let today = dayjs().format('YYYY-MM-DD')
            return {
                startTime: n > 0 ? dayjs().subtract(n, 'day').format('YYYY-MM-DD') : today,
                endTime: today,
            }
        }
  • 近n月
		const getRecentlyMonths = (n) => {
            let today = dayjs().format('YYYY-MM-DD')
            return {
                startTime: n > 0 ? dayjs().subtract(n, 'month').format('YYYY-MM-DD') : today,
                endTime: today,
            }
        }
  • 本周
 		const getThisWeek = () => ({
            startTime: dayjs().startOf('week').add(1, 'day').format('YYYY-MM-DD'),
            endTime: dayjs().endOf('week').add(1, 'day').format('YYYY-MM-DD'),
        })
  • 本月
		const getThisMonth = () => ({
            startTime: dayjs().startOf('month').format('YYYY-MM-DD'),
            endTime: dayjs().endOf('month').format('YYYY-MM-DD'),
        })
  • 本年
		const getThisYear = () => ({
            startTime: dayjs().startOf('year').format('YYYY-MM-DD'),
            endTime: dayjs().endOf('year').format('YYYY-MM-DD'),
        })
  • 时间m是否在n之前
		const isBefore = (m = dayjs(), n = dayjs()) => {
            return dayjs(m).isBefore(dayjs(n))
        }
  • 时间m是否在n之后
		const isAfter = (m = dayjs(), n = dayjs()) => {
            return dayjs(m).isAfter(dayjs(n))
        }
  • 两个时间是否是同一时间
		const isSame = (m = dayjs(), n = dayjs()) => {
            return dayjs(m).isSame(dayjs(n))
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值