Search⌘ K
AI Features

Implementing the getErrorAction Method

Understand how to create and implement the getErrorAction in your Angular NgRx project. This lesson guides you through defining the action and its reducer handler to manage error responses from Angular services, improving your ability to handle side effects efficiently.

We'll cover the following...

Introduction

In our application, when the Angular services return an error response, the NgRx effects dispatch the getErrorAction.

Since we’ve already learned how to define an NgRx action, ...