我想在Windows环境中使用node.js每1小时运行一条打印语句。
所以我尝试了以下代码
var schedule = require('node-schedule'); var j = schedule.scheduleJob('*/1 * * *', function(){ console.log('The answer to life, the universe, and everything!'); });
但是当我尝试运行此输出时,输出结果与预期的不符。可能是我的日程安排格式有误吗?有人可以说我每隔1个小时或每5个小时运行一次的正确格式吗?
为什么不能使用setInerval()
setInterval(function () { console.log('The answer to life, the universe, and everything!'); }, 1 * 60 * 60 * 1000); // 1 hour