Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在每个星期一做一次工作。
我试过了
agenda.every('* * * * * 1', 'Weekly keyworker report');
但它每秒执行一次。我很困惑使用它。我正在基于这个包工作。
与 UNIX cron 不同,node-cron支持秒并且有六个字段而不是五个字段。
* * * * * 1表示星期一的每一秒。
* * * * * 1
你必须把它改成这样: 00 30 10 * * 1这意味着每周一的 10 点 30 分。
00 30 10 * * 1