1

因为我对 loopback 4 和 Typescript 很陌生,知道我们必须使用自定义引导程序来实现像 Cron 这样的计划任务。

我需要一个执行此操作的代码片段,即一个自定义引导程序类,它实现配置、发现和加载的引导程序阶段以运行 Cron

4

2 回答 2

3

我不确定这是这样做的方法,但这对我有用。

https://loopback.io/doc/en/lb4/Booting-an-Application.html#bootcomponent

首先在项目文件夹中创建一个组件。我建立src\components\cron.component.ts

import { Component } from "@loopback/core";
import { CronJob, CronCommand } from "cron"

export class CronJobsComponent implements Component {
    private cj: CronJob;
    constructor(){
        this.start()
    }

    async start(){
        this.cj = new CronJob('* * * * * *', this.showMessage)
        this.cj.start();
    }

    showMessage:CronCommand = async () => {
        console.log("inside cron jobs")
    }

}

接下来在application.ts文件中导入我们的组件

import { CronJobsComponent } from './components'

并在构造函数中注册我们的新组件

this.component(CronJobsComponent);

玉米作业在应用程序启动时开始。

我使用了 https://www.npmjs.com/package/cronhttps://www.npmjs.com/package/@types/cron

希望这对您有所帮助。

于 2019-04-09T09:17:11.240 回答
0

您始终可以创建一个 cron 端点。

http://localhost:3000/cron

然后,您可以将 curl 命令添加到您的 crontab。

curl http://localhost:3000/cron

这种方法是处理关注点分离的好方法。如果您的 api 是在 kubernetes 上运行的微服务,您可以使用该Cron资源调用 cron 端点。

如果您的应用程序是公开的,请确保端点是安全的。

于 2019-09-04T06:20:52.730 回答