admin管理员组文章数量:1344553
I'm sure this is a simple one, but I just can't get chained functions to work in Parse's Cloud Code. I know it's possible - so this may be an indictment of my javascript n00bness. ;>
Below is a simple test function-chain that shows how I think it should work - but it doesn't. On response.error
events, I seem to get errors, but on success I get:
{"code":141,"error":"success/error was not called"}
Here are the test functions:
Parse.Cloud.define("initialFunction", function(request, response) {
var player = request.params.player;
Parse.Cloud.run("chainedFunction",{ player: player.id },{
sucess: function(results) {
response.success(results);
},
error: function(results, error) {
response.error(errorMessageMaker("running chained function",error));
}
});
});
Parse.Cloud.define("chainedFunction", function(request, response) {
var player = Parse.Object.extend("User");
var findPlayer = new Parse.Query(player);
findPlayer.get(request.params.player, {
success: function(player) {
var games = player.relation("games");
games.query().find({
success: function(games) {
response.success(games);
},
error: function(players, error) {
response.error(errorMessageMaker("finding games",error));
}
});
},
error: function(player,error) {
response.error(errorMessageMaker("finding player",error));
}
});
});
.. and here is my initial call to the function, for reference (though I'm sure this is not the problem):
curl -X POST \
-H "X-Parse-Application-Id: <id>" \
-H "X-Parse-REST-API-Key: <id>" \
-H "Content-Type: application/json" \
-d '{"player":"<id>"}' \
I'm sure this is a simple one, but I just can't get chained functions to work in Parse.'s Cloud Code. I know it's possible - so this may be an indictment of my javascript n00bness. ;>
Below is a simple test function-chain that shows how I think it should work - but it doesn't. On response.error
events, I seem to get errors, but on success I get:
{"code":141,"error":"success/error was not called"}
Here are the test functions:
Parse.Cloud.define("initialFunction", function(request, response) {
var player = request.params.player;
Parse.Cloud.run("chainedFunction",{ player: player.id },{
sucess: function(results) {
response.success(results);
},
error: function(results, error) {
response.error(errorMessageMaker("running chained function",error));
}
});
});
Parse.Cloud.define("chainedFunction", function(request, response) {
var player = Parse.Object.extend("User");
var findPlayer = new Parse.Query(player);
findPlayer.get(request.params.player, {
success: function(player) {
var games = player.relation("games");
games.query().find({
success: function(games) {
response.success(games);
},
error: function(players, error) {
response.error(errorMessageMaker("finding games",error));
}
});
},
error: function(player,error) {
response.error(errorMessageMaker("finding player",error));
}
});
});
.. and here is my initial call to the function, for reference (though I'm sure this is not the problem):
curl -X POST \
-H "X-Parse-Application-Id: <id>" \
-H "X-Parse-REST-API-Key: <id>" \
-H "Content-Type: application/json" \
-d '{"player":"<id>"}' \
https://api.parse./1/functions/initialFunction
Share
Improve this question
asked Oct 2, 2012 at 20:08
toblerpwntoblerpwn
5,5308 gold badges39 silver badges47 bronze badges
1
- similar type of chaining problem .. stackoverflow./questions/32768731 – Fattie Commented Sep 25, 2015 at 12:12
1 Answer
Reset to default 12You misspelled "success" in your first options object.
本文标签: javascriptParsecom Cloud Code Chaining functionsStack Overflow
版权声明:本文标题:javascript - Parse.com Cloud Code: Chaining functions? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743765864a2535221.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论