我想从上午 8 点 45 分到 12 点 30 分每 5 分钟运行一次函数,我该怎么做?谢谢。
schedule.scheduleJob('*/5 8:45-12:30 * * *', function(){
console.log('Hi there')
});
我想从上午 8 点 45 分到 12 点 30 分每 5 分钟运行一次函数,我该怎么做?谢谢。
schedule.scheduleJob('*/5 8:45-12:30 * * *', function(){
console.log('Hi there')
});