cron 设置的定时无效,0 19 14 ? * 5 *

想设置一个定时时间,表示每周四下午14点19分执行,语句如:later.parse.cron('0 19 14 ? * 5 *') 但就是一直没有执行效果,换成later.parse.text('at every 1 min')是可以执行的,第一条语句是有什么问题吗?

largeQ
浏览 1108回答 1
1回答

忽然笑

cron 各个位置对应的时间# ┌───────────── minute (0 - 59)# │ ┌───────────── hour (0 - 23)# │ │ ┌───────────── day of the month (1 - 31)# │ │ │ ┌───────────── month (1 - 12)# │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday;# │ │ │ │ │                                   7 is also Sunday on some systems)# │ │ │ │ │# │ │ │ │ │# * * * * * command to execute所以应该这样设later.parse.cron('19 14 ? * 4')later.parse.cronwiki Cron
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js