Handle Errors with RxJS catch

André Staltz
InstructorAndré Staltz
Share this video with your friends

Social Share Links

Send Tweet
Published 8 years ago
Updated 3 years ago

Most of the common RxJS operators are about transformation, combination or filtering, but this lesson is about a new category, error handling operators, and its most important operator: catch().

🚨 Since we are importing interval from RxJS, we don't need to preface our Observables with Rx.Observable. You can no longer .{operator}, you need to .pipe({operator}) instead. catch is deprecated, use catchError instead.

[00:00] Most of the common operators are either about the transformation, or combination, or filtering, but now we're going to see a new category of operators, error handling operators, of which catch is the most common one or the most important.

[00:14] In a real application, things may go wrong. Here's an example of an Observable of strings, foo, which we're mapping to their uppercase to get Observable bar. Now, let's say foo would emit a number instead of a string. Then, when we try to map that number to its uppercase, that doesn't really work, so we get an error here at the bottom.

[00:37] Let's see that happening. A, B, C, and D, and then an error because numbers x don't have toUpperCase as a function.

[00:47] At this point, let's remember that once an error happens, it means that the Observable has terminated. Nothing will happen after that. What catch allows us to do is replace this error with another Observable, and that's really the argument that we give to catch is a function that takes an error.

[01:06] Here, you're supposed to return an Observable to mean what to replace the error with. Here, we're going to replace the error with an Observable of just the string "Z," and then it completes.

[01:19] If we plot that, we see we're going to take an error like this, and we're going to replace it with an observable that has just "Z," and then it completes. We're going to say A, B, C, and D, and then Z, and complete. That's our result Observable. Then we see A, B, C, D, and Z, and done.

[01:43] You can also be a bit more creative here. Instead of replacing the error with an Observable that has an emission, you can also just have the complete notification. That would be Observable empty. Observable empty just emits "complete" and nothing else. That's why the error will be replaced with "complete." Then we get A, B, C, D, and complete.

[02:09] You can also replace the error with a never. That means that here, it would just never emit anything. It would just emit A, B, C, D, and then nothing after that.

[02:23] The replacing logic we give to catch takes, also, a second argument, and that would be the output Observable. Now, what does that actually refer to? Output Observable is not bar, but output Observable is actually the result Observable. This allows you to give a retry behavior to catch.

[02:47] Let's see that in action. Catch will replace an error with the output Observable itself, which is this. This is the output Observable. It replaces that error with the output Observable, and then that error will definitely happen after D again, so then it will replace again, and it will keep on doing this.

[03:08] Essentially, what we get is every time an error happens, restart the whole execution and get the same things happening again.

[03:17] In this case, of course, it's going to keep on retrying this forever, because definitely errors happen after D, so it will keep on retrying forever. There are cases where this retry behavior makes more sense. Let's take a look at one of those.

[03:35] Here, we have Observable foo, which is an Observable of random numbers emitted every half a second. These random numbers are in the range of zero and one. Then, we have a map operation that checks if that number is less than half, then it just sends that number, but if the number is between half and one, then it will throw an error.

[04:01] In this case, here, if this one was 07, for instance, then that will be an error thrown on bar. When we run this, because it's random, if this first one was 07, then it just starts with, "An error was thrown." It may take a while, then it throws a 08. This behavior is random.

[04:28] What we want to do with catch is be able to say whenever an error happens, just restart this whole process all over again. Basically, we get this, and we replace the error with itself, and we just keep on going.

[04:42] Let's say that here happened an error, and it's just going to replace this whole error with that Observable that just keeps on emitting random numbers. That's what the result will look like.

[04:58] Let's run that. Sometimes when it sees an error, it just restarts the Observable. Then, we get just numbers that are between 0and 05.

[05:11] Catch is useful not just to replace a single error with an Observable, but to replace an error with a retry behavior to go back and resubscribe.

ganqqwerty
ganqqwerty
~ 6 years ago

I liked the example of < 0.5 very much!

Rich
Rich
~ 4 years ago

is catch() still an operator in the latest version?

Rich
Rich
~ 4 years ago

When I search Google I get more references to catchError(). Should I assume catchError() is the new catch() or do they have distinct use cases?

Markdown supported.
Become a member to join the discussionEnroll Today