1. 10
    Resolve data as part of the route transition in Angular
    4m 40s

Resolve data as part of the route transition in Angular

Share this video with your friends

Send Tweet

Usually our route contains some identifier as parameter which we then read in the activated component to fetch further data to be displayed. However, in some cases we might be better served to resolve that data before the actual component gets activated. The Angular router allows us to implement such thing by using a so-called route Resolver. In this lesson we’re going to take a closer look and implement one by ourselves.