繁体   English   中英

Day.js - 获取一年中剩余月份的数组

[英]Day.js - Get array of remaining months in year

我想在倒计时、今年(或任何日期)中获取剩余月份(0-index)的索引数组,不包括当前月份。 我正在使用lodashdayjs ,但我觉得我的代码有点难以理解。

有没有更“dayjs”的方式来获得我想要的东西? 我没有在文档库或其他有类似问题的线程中找到更多帮助。

// All months - Current year's remaining months (0-index), we map in reverse until reaching 0
const yearRemainingMonths = map(range(11 - dayjs().month()), n => 11 - n)
// []

// Let's pretend we are in June, so we'd get
// [11, 10, 9, 8, 7]

没有什么更清洁的方法了。 最后,您必须循环一次或存储预定义的数组。

示例 1 - 使用缓存数据


import dayjs from 'dayjs'

const months = [0,1,2,3,4,5,6,7,8,9,10,11]
function remainingMonths(month) {
  return [...months].splice(month+1).reverse()
}

console.log(remainingMonths(dayjs().month())) // []
console.log(remainingMonths(5))  // june => [ 11,10,9,8,7,6]
console.log(remainingMonths(0))  // [11,10,9,8,7,6,5,4,3,2,1]

示例 2 - 使用for loop

function remainingMonths(month) {
  const remaining = []
  for(let i = 11; i > month; i--) {
    remaining.push(i)
  }
  return remaining
}

console.log(remainingMonths(11)) // []
console.log(remainingMonths(5))  // june => [ 11,10,9,8,7,6]
console.log(remainingMonths(0))  // [11,10,9,8,7,6,5,4,3,2,1]

可能for循环更干净一些。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM