module.exports = [{
interval: '10s',
immediate: true,
handle: () => {
console.log("这是每隔10秒输出的内容");
}
}, {
cron: '*/1 * * * *',
handle: 'test/index/say',
type: 'all',
immediate:true//是否立即执行
}]
module.exports = [{
interval: '10s',
immediate: true,
handle: () => {
console.log("这是每隔10秒输出的内容");
}
}, {
cron: '*/1 * * * *',
handle: 'test/index/say',
type: 'all',
immediate:true//是否立即执行
}]
本文标题:定时器
本文链接:https://www.haomeiwen.com/subject/tsyfzqtx.html
网友评论