将云代码从parse.com推送到heroku无法正常工作

时间:2016-03-24 15:03:54

标签: heroku parse-platform migration cloud-code parse-server

' cloud / main.js'中有默认功能。解析服务器示例工作正常我可以看到'嗨'我的iOS应用模拟器中的响应。

Parse.Cloud.define('hello', function(req, res) 
{
     res.success('Hi');
});

将我自己的函数添加到此文件后,如下所示:

Parse.Cloud.define(testFunction', function(req, res)
{
     res.success('Test function');
});

并运行以下命令:

$ git add index.js
$ git commit -m "Changed configuration values"
$ git push heroku master

并在我的应用程序功能中调用它显示错误:

[PFCloud callFunctionInBackground:@"testFunction"
                       withParameters:nil
                                block:^(id object, NSError *error)
     {
         if (!error)
         {
             NSLog(@"%@",object);

         }
         NSLog(@"%@",error.debugDescription);
     }
     ];

[错误]:功能无效。 (代码:141,版本:1.13.0)

但是'你好'功能正常。这会怎么样?

1 个答案:

答案 0 :(得分:1)

Parse.Cloud.define(testFunction', function(req, res)

您在testFunction'前面错过了引用。