codecamp

Moralis Jobs

有时您想执行长时间运行的函数,并且不想等待响应。 ​Cloud Jobs​ 就是为此而生的。

定义一个Job

在您的云功能中定义Job。

    Moralis.Cloud.job("myJob", (request) =>  {
      // params: passed in the job call
      // headers: from the request that triggered the job
      // log: the Moralis Server logger passed in the request
      // message: a function to update the status message of the job object
      const { params, headers, log, message } = request;
      message("I just started");
      return doSomethingVeryLong(request);
    });

安排Job

您可以通过单击右上角的“Schedule a job”在仪表板的“Jobs”部分安排Job。

spaces_-MVStbACGLCycg7J5WQ2_uploads_git-blob-6f169bf7d2e538be9eb5c2f5f39d6ba1af18aeda_Moralis_dashboard_Schedule_Job

选择描述、要运行的Job并在需要时提供参数

spaces_-MVStbACGLCycg7J5WQ2_uploads_git-blob-1bb4c06fc1325b08bcc9ba5cb074ec2ece435a7f_Moralis_dashboard_schedule_job_options

当您配置好您的工作后,您可以通过按右下角的“Schedule”来确认它。


Moralis 触发器
Moralis Webhooks
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Moralis 文件

Moralis 工具

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }