angular routermodule code example
Example 1: generate module with routing in angular
ng g m [ModuleName] --routing
Example 2: ng router link
<a [routerLink]="['/user/bob']" [queryParams]="{debug: true}" fragment="education">
link to user component
</a>
Example 3: angular router navigate
goPlaces() {
this.router.navigate(['/', 'page-name']);
}
Example 4: how to create app.routing.module.ts in angular 6
ng generate module app-routing --flat --module=app
Example 5: home page routing in angular
const routes: Routes = [
{ path: 'home_page_path', component: HomePageComponent }
];
add this in app routing file
Example 6: angular routing url params
const appRoutes: Routes = [
{ path: 'crisis-center/:param1', component: CrisisListComponent },
{ path: 'hero/:param2', component: HeroDetailComponent },
];
@NgModule({
imports: [
RouterModule.forRoot(
appRoutes,
{ enableTracing: true }
)
],
...
})
export class AppModule { }