gpt4 book ai didi

ios - Parse.com 到 Heroku : use background job with heroku and scheduler

转载 作者:太空宇宙 更新时间:2023-11-03 23:05:19 24 4
gpt4 key购买 nike

我想在 parse-server-examplejobs.js 中使用第一个函数 sayHello

在我的 jobs.js 中,我有这个:

var Parse = require('parse/node');
Parse.initialize('xx', 'xx','xx');
Parse.serverURL = 'xx';
Parse.Cloud.useMasterKey();

function sayHello() {
console.log('Hello');
}

我尝试使用此终端行命令运行它:

heroku run sayHello -a myAppName

返回:

Running sayHello on myAppName... up, run.6148
bash: sayHello: command not found

最佳答案

您应该将要运行的作业放在函数外部的自己的文件(不带 .js 扩展名)中。

    var Parse = require('parse/node');
Parse.initialize('xx', 'xx','xx');
Parse.serverURL = 'xx';
console.log('Hello');

然后您可以从命令行运行以下命令。

    heroku run node nameOfFile --app yourAppName

关于ios - Parse.com 到 Heroku : use background job with heroku and scheduler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35898090/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com