0
我在我的本地機器上安裝了cron
模塊,我在heroku上部署了我的應用程序。node.js`cron`模塊不能在heroku上工作
new cronJob('00 00 * * * *', function() {
log.info('every hour');
}, null, true);
new cronJob('00 00 00 * * *', function() {
log.info('every day');
}, null, true);
第一個cronJob每小時執行一次log.info
函數,第二個 - 每一天執行一次。腳本在我的本地機器上完美運行,但不適用於heroku。
您是否將其添加到您的package.json文件中https://devcenter.heroku.com/articles/getting-started-with-nodejs#declare-dependencies-with-npm – KeepCalmAndCarryOn
@KeepCalmAndCarryOn當然可以。除此之外的所有模塊都能完美工 – user3215609