2

我正在开发一个调度多个 cron 作业的 nodejs 应用程序。顺便说一句,当我尝试取消作业时出现错误。

情况如下。

  • node-cron我使用or创建了多个 cron 作业node-schedule
  • 一些作业的开始时间已经过去,然后我尝试使用脚本取消所有 cron 作业。
  • 我收到如下错误。 TypeError: testJob.destory is not a function

你能帮我解决这个问题吗?

cron 模块 / cronManager.js

const cron = require("node-cron") 

// cron jobs
let testJob1
let testJob2
let testJob3

async function startCronjobs(cronTimes) {
  testJob1 = cron.schedule(cronTimes.testTime1, () => {
    console.log("test 1 job")
  }, {
    scheduled: true, 
    timezone: "America/New_York"
  })
  testJob1.start() 

testJob2 = cron.schedule(cronTimes.testTime2, () => {
    console.log("test 2 job")
  }, {
    scheduled: true, 
    timezone: "America/New_York"
  })
  testJob2.start() 

testJob3 = cron.schedule(cronTimes.testTime3, () => {
    console.log("test 3 job")
  }, {
    scheduled: true, 
    timezone: "America/New_York"
  })
  testJob3.start() 
}

async function destroyCronjobs() {
  console.log("============= Destroy node-cron Jobs ================")
  return new Promise((resolve, reject) => {
    if(testJob1 !== undefined && testJob1 !== null) testJob1.destory()
    if(testJob2 !== undefined && testJob2 !== null) testJob2.destory()
    if(testJob3 !== undefined && testJob3 !== null) testJob3.destory() 
  })
}

module.exports.destroyJobs = destroyCronjobs
module.exports.startCronJobs = startCronjobs

脚本/main.js

const cronManager = require("./cronManager")
const express = require("express") 
const router = express.Router() 

router.post("/start", wrapper(async (req, res) => {
    await cronManager.startCronjobs()
}))

router.post("/destroy", wrapper(async (req, res) => {
    await cronManager.destoryCronjobs()
}))

4

1 回答 1

1

您的代码中有拼写错误,testJob1.destory()但应该是testJob.destroy()

destroy()将停止并完全销毁计划任务。

假设这是示例代码,因此它缺少一些参数 forcronManager.startCronjobs()并且此函数没有返回任何promise要使用的参数await

于 2019-03-07T06:56:37.160 回答