我有一种情况需要保存一个Backbone模型然后成功迭代一个集合并保存它们然后在每个成功迭代通过另一个集合并保存那些然后在完成所有这些之后执行一个AJAX请求。这就是我所拥有的:
backboneModel.save(
{},
{
wait: true,
success: function (model1, response1)
{
$.each(backboneCollection1.models, function () {
this.save(
{},
{
wait: true,
success: function (model2, response2)
{
$.each(backboneCollection2.models, function () {
this.save(
{},
{
wait: true,
success: function (model2, response2)
{
//If i put the AJAX request here it will happen for every iteration which is not desired
}
});
});
}
});
});
//If i put the AJAX request here it will fire after one iteration of the first each even with async set to false on the AJAX request
}
});
有没有人对如何执行此AJAX请求有任何建议,所以只有在所有骨干模型保存到服务器后才会触发一次?
答案 0 :(得分:2)
看看我创建的这个jsfiddle。它取代了你成功的回调,并使用promises来保存你的模型,然后是集合1然后集合2.一旦完成所有这些,你就可以在done()中进行ajax调用。
大部分更改都是用此替换上面的内容。
var saveEverything = backboneModel.save()
.pipe(function() { return saveCollection(backboneCollection1); })
.pipe(function() { return saveCollection(backboneCollection2); });
saveEverything.done(function() { console.log('done with everything, ajax time') });//make your ajax call in the done
如果您不知道jQuery承诺的是什么,this是一篇非常棒的博客文章,解释了承诺。如果我的例子没有任何意义,或者只是问,我可以尝试解释发生了什么以及发生了什么。
答案 1 :(得分:0)
在迭代模型时进行计数,当计数=模型长度时,调用AJAX