Angular Routing Basics

Go back to Tutorial

The Angular Router enables navigation from one view to the next as users perform application tasks. The browser is a familiar model of application navigation:

  • Enter a URL in the address bar and the browser navigates to a corresponding page.
  • Click links on the page and the browser navigates to a new page.
  • Click the browser’s back and forward buttons and the browser navigates backward and forward through the history of pages you’ve seen.

The Angular Router (“the router”) borrows from this model. It can interpret a browser URL as an instruction to navigate to a client-generated view. It can pass optional parameters along to the supporting view component that help it decide what specific content to present. You can bind the router to links on a page and it will navigate to the appropriate application view when the user clicks a link. You can navigate imperatively when the user clicks a button, selects from a drop box, or in response to some other stimulus from any source. And the router logs activity in the browser’s history journal so the back and forward buttons work as well.

A multi-page routed sample application has following key features of the router such as:

  • Organizing the application features into modules.
  • Navigating to a component (Heroes link to “Heroes List”).
  • Including a route parameter (passing the Hero id while routing to the “Hero Detail”).
  • Child routes (the Crisis Center has its own routes).
  • The CanActivate guard (checking route access).
  • The CanActivateChild guard (checking child route access).
  • The CanDeactivate guard (ask permission to discard unsaved changes).
  • The Resolve guard (pre-fetching route data).
  • Lazy loading feature modules.
  • The CanLoad guard (check before loading feature module assets).

 

Go back to Tutorial

Share this post
[social_warfare]
Form State Management
base href tag

Get industry recognized certification – Contact us

keyboard_arrow_up