' 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)
但是'你好'功能正常。这会怎么样?
答案 0 :(得分:1)
Parse.Cloud.define(testFunction', function(req, res)
您在testFunction'
前面错过了引用。