Skip to main content

Posts

Showing posts with the label Routing and Navigation

Routing and Navigation FAQs- Angular

Stayed Informed – Angular 2, 4, 5, 6, 7 , 8 and 9 documentations including Examples What is Angular Router? An Angular Router is a tool, library that configures navigations between states and views within your Angular app. The Routing library is written and maintained by the Angular Core Team. Angular router has own library package - @angular/router. import { Routes , RouterModule ,}   from '@angular/router' ; The basic concept of Angular Router and It allows you to - 1.       Redirect a URL to another URL 2.       Resolve data before a page is displayed 3.       Run scripts when a page is activated or deactivated 4.       Lazy load parts of our application The router supports both styles with two LocationStrategy providers - 1.       PathLocationStrategy— this is the default style. 2.       Hash...