我的 Cron 表达式是:0 0/5 19-7 * * Mon,Tue,Wed
这传入了以下 cron 表达式帮助网站 https://ncrontab.swimburger.net/ https://crontab.guru
但是,在打印下一个 50 个计划时,这将失败并出现以下错误:
[2021-06-07T17:11:38.690Z] 执行“Function1”(失败,Id=1005492c-88bd-4cc6-ada5-355cdabdf156,持续时间=488ms)[2021-06-07T17:11:38.692Z] System.Private .CoreLib:执行函数时出现异常:Function1。NCrontab.Signed: '0 0/5 19-7 * * Mon,Tue,Wed' 是一个无效的 crontab 表达式。它必须包含按分钟、小时、天、月和星期几顺序排列的日程表的 5 个组成部分。
以下是打印接下来 50 个计划的 Azure 函数代码:
using System;
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;
using NCrontab;
namespace FunctionApp1
{
public static class Function1
{
private const string SCHEDULE_CRON_EXPRESSION = "0 0/5 19-7 * * Mon,Tue,Wed";
private const int NUMBER_OF_FUTURE_SCHEDULES = 50;
#if DEBUG
const bool RUN_ON_STARTUP = true;
#else
const bool RUN_ON_STARTUP = false;
#endif
[FunctionName("Function1")]
public static void Run([TimerTrigger(SCHEDULE_CRON_EXPRESSION, RunOnStartup = RUN_ON_STARTUP)]TimerInfo myTimer, ILogger log)
{
DateTime theScheduleDateTime = DateTime.Now;
var schedule = CrontabSchedule.Parse(SCHEDULE_CRON_EXPRESSION);
for(int i = 0; i < NUMBER_OF_FUTURE_SCHEDULES; i++)
{
theScheduleDateTime = schedule.GetNextOccurrence(theScheduleDateTime);
log.LogInformation($"Next Schedule {i}: {theScheduleDateTime} ");
}
}
}
}
我在这里想念什么?是否有任何官方 Azure 工具可以帮助创建和验证 CRON 表达式?