想设置一个定时时间,表示每周四下午14点19分执行,语句如:later.parse.cron('0 19 14 ? * 5 *') 但就是一直没有执行效果,换成later.parse.text('at every 1 min')是可以执行的,第一条语句是有什么问题吗?
1 回答
交互式爱情
TA贡献1712条经验 获得超3个赞
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.cron
wiki Cron
- 1 回答
- 0 关注
- 557 浏览
添加回答
举报
0/150
提交
取消