不明な数のajaxリクエストを処理しています。リクエストは404で失敗する可能性があります。これにより、チェーン全体が失敗します。
1つの延期が失敗した後に続行する方法はありますか?
var deferreds = [];
// fill deferreds with a number of ajax requests.
$.when.apply($, deferreds)
.done(function(){
// handle done
}).fail(function(){
// handle fail
// would like to fix/resolve the failed deferred and continue with the rest
});