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.
これは、7 日ごとにタスクを実行するコードです。
cron.schedule('0 0 */7 * *',()=>{ console.log('Task running every 7 days') });
今、私はこれを特定の日付の後にのみ実行したいと考えています。たとえば、明日です。どうすれば実装できますか?誰か助けてくれませんか?
setTimeout() 関数を使用して、スケジューリングをいつ開始するかを指定できます。
let callback = () => {cron.schedule('0 0 */7 * *',()=>{console.log('Task running every 7 days')})}; setTimeout(callback, delay);