I have code that looks somewhat like this (less ridiculous, of course):

var d = $.Deferred();
d.pipe(function() {
    throw "a";
}).then(function() {
    console.log("good!");
}, function(e) {
    console.log("I want the exception here");
});
d.resolve();

The problem is that throwing an exception in a .pipe doneFilter does not seem to make jQuery consider it as a failure and it results in an uncaught exception in the doneFilter.

An alternative is to create a new deferred and throw a try-catch block around the doneFilter, but I was wondering if there was a better way to go about it.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If you have to use throw, it is indeed best to catch it in the doneFilter, and return $.Deferred().reject('a') (or whatever) from it on error. The fail callback in then will then be called with the arg you pass.

link|improve this answer
Could you elaborate on this? There's apparently no such thing as $.Deferred.reject. – rfw Jan 10 at 6:49
Sorry, typo. Edited to fix: $.Deferred() – Jed Jan 10 at 6:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.