How to use Navigation, RouterLink declarative in Angular
This Article helps you to Understand, How to use Navigation, RouterLink declarative in Angular ?
It's all well and well to talk about routes, but how does one get to those routes? The routerLink directive can be used for this.
The user can change the navigation or view by clicking a link, button, or entering a URL into the browser's address bar. Every view switch can carry over the data parameters from the previous view to the new view.
There are a couple of ways of using routerLink:
Add a navigation link (routerLink)
Note: To use routerLink directive in our Component, we need to add RouterModule or AppRoutingModule in @NgModule.imports of AppModule
The RouterLink directives let you link to specific parts of your app.
Static router navigation
We can either hardcode a string directly in the template, like its the case of the home route or the servers route. But we can also pass it an expression. If so we need to pass it an array containing the multiple URL path parts that we want to navigate to: in this case we want to navigate to the /users path.
Programmatic router navigation
Using the router programmatic API is another technique to perform router navigation. We only need to use the navigate or navigateByUrl navigation methods and inject the router into our component to do this.
Why Not Normal Anchor, Why RoutLink?
In case of normal anchor, when we are clicking any tab, it reloads entire application (refresh browser), instead of changing content and url only
RouteLink is a special directive. RouteLink instruct angular that the element on which routeLink is placed will server like a link but behave as a click
How Angular Prepare Routes
What happen if we specify routes without a leading /
If we provide links without leading / in app.component, It will works.
But if we provide link on inner page like servers.component.html, This gives you an error message
Reason...
-- Without / it create a relative page, path relative to present working directory which is servers. In relative path, it always append the path specified in routeLink to end of your current path.
-- With / it create absolute path from root directory, always get appended to the root domain.
Note:
./server is similar to server only (i.e. without any link)
../server - will go back one path above i.e. parent path