我认为我已经掌握了Parse承诺链,但我不明白的是我如何从函数中返回数据(i)备份promise链和(ii)返回调用方法我最初的JS代码。
使用下面的代码,调用第一个Parse查询,然后调用a(),最后调用b(),这一切都很好。每个阶段的console.log都用于测试目的,并显示链已经按顺序执行。
我现在有3个问题:
如何从函数a()和函数b()中获取数据,以便我可以在main函数getUserCompetitionTokens()中访问它?
如何将getUserCompetitionTokens()中的任何数据返回给调用此Parse代码的主程序?
如果我想将函数a()以及函数b()中的数据返回到我的主程序怎么办?
function getUserCompetitionTokens(comp_id) {
Parse.initialize("****","****");
currentUser = Parse.User.current();
user_competition = Parse.Object.extend("UserCompetition");
var user_comp_query = new Parse.Query(user_competition);
user_comp_query.equalTo("UserParent", currentUser);
user_comp_query.find().then(a).then(b);
function a(user_comp_results) {
var no_results = user_comp_results.length;
var id = user_comp_results[0].id;
console.log("User Competition Output: " + no_results + " results found, first item id: " + id);
var Competition = Parse.Object.extend("Competition");
var query = new Parse.Query(Competition);
return query.get(comp_id, {
success: function(competition) {
console.log("COMP - " + competition.id);
},
error: function(competition, error) {
console.log(error);
}
});
}
function b(competition) {
var Competition = Parse.Object.extend("Competition");
var query = new Parse.Query(Competition);
query.get(comp_id, {
success: function(competition) {
console.log("COMP 2 - " + competition.id);
},
error: function(competition, error) {console.log(error);}
});
}
}
答案 0 :(得分:5)
您不 返回:)
对不起,这只是技术性的一个笑话:你知道,Promise是一种表达异步行为的方式。所以你不能严格地说,抓住函数的 return 值。
但是,您已经正确地抓住每个步骤的结果...您只是没有意识到您可以自己使用它。
答案是使用您自己的then
处理程序。
user_comp_query.find().then(a).then(b).then(function(results){
console.log(results); // Hooray!
});
但是,请记住,承诺可能失败。这就是为什么传递第二个处理程序很重要的原因,只要有错误就会调用它。
var handleSuccess = function (results) {};
var handleFailure = function (error) {};
var parsePromise = user_comp_query.find().then(a).then(b);
parsePromise.then(handleSuccess, handleFailure);