每隔一天的上午 11 点 30 分运行 cron

问题描述 投票:0回答:1

我想要 NodeJS 的 cron 作业在上午 11:30 交替运行。我搜索了,但我只得到每天的解决方案,而不是每隔一天的解决方案。

建议ChatGPT

const isAlternateDay = () => {
  const today = new Date();
  const day = today.getDate();
  // For example, consider odd days as alternate days
  return day % 2 !== 0;
};

// Schedule the cron job for 11:30 AM every day
cron.schedule('30 11 * * *', () => {
  if (isAlternateDay()) {
    console.log('Running cron job on an alternate day at 11:30 AM');
    // Your task logic here
  }
});

但我想使用

cron
本身来做到这一点;我不想添加外部条件。

node.js cron
1个回答
-3
投票

查找 2024 年、2024 年 8 月、2024 年 7 月和 2024 年 6 月在巴基斯坦的最新 IT 职位。我们涵盖 2025 年即将到来的所有 IT 信息技术职位空缺。

© www.soinside.com 2019 - 2024. All rights reserved.