使用JavaScript计算工作日并考虑假期

时间:2016-07-26 12:09:21

标签: javascript date

我如何调整这个问题中的代码以考虑国家法定假日。

Getting Working Days Using Javascript

我知道我需要一系列日期,这些日期是假期但是需要添加到逻辑中的什么?

1 个答案:

答案 0 :(得分:1)

获得一系列假期实际上可能不是故事中最简单的部分。

无论如何,我将假设您最终得到[ year, month, day ]格式的日期数组。在那里存储完整的Date个对象是另一种可能性,根据您的导入方法,这可能是也可能不是更合适。

下面是一个非常简化且显然不完整的一个:

const holidays = [
  [ 2015,  1,  1 ], [ 2015,  1, 19 ], [ 2015,  7,  4 ], [ 2015, 12, 25 ],
  [ 2016,  1,  1 ], [ 2016,  1, 18 ], [ 2016,  7,  4 ], [ 2016, 12, 25 ],
  [ 2017,  1,  1 ], [ 2017,  1, 16 ], [ 2017,  7,  4 ], [ 2017, 12, 25 ]
];

这里有一些代码可以帮助您入门:

const holidays = [
  [ 2015,  1,  1 ], [ 2015,  1, 19 ], [ 2015,  7,  4 ], [ 2015, 12, 25 ],
  [ 2016,  1,  1 ], [ 2016,  1, 18 ], [ 2016,  7,  4 ], [ 2016, 12, 25 ],
  [ 2017,  1,  1 ], [ 2017,  1, 16 ], [ 2017,  7,  4 ], [ 2017, 12, 25 ]
];

function isHoliday(ts) {
  var year  = ts.getFullYear(),
      month = ts.getMonth(),
      day   = ts.getDate();

  return holidays.some(function(d) {
    return d[0] == year && d[1] == month + 1 && d[2] == day;
  });
}

function getWorkingDays(ts, end) {
  for(var cnt = 0; ts.getTime() <= end.getTime(); ts.setDate(ts.getDate() + 1)) {
    // increment counter if this day is neither a Sunday,
    // nor a Saturday, nor a holiday
    if(ts.getDay() != 0 && ts.getDay() != 6 && !isHoliday(ts)) {
      cnt++;
    }
  }
  return cnt;
}

console.log(getWorkingDays(new Date('2015-12-20'), new Date('2016-01-03')));
console.log(getWorkingDays(new Date('2016-12-20'), new Date('2017-01-03')));