For the Angular Router service (@angular/router)
I am using angular2 routing. When the user re-enters the value in the search field and clicks on search, the …
angular angular-routing angular-routerI'm using angular-cli-1.6.3 for bundling my project. I try to rename lazy loaded chunk name into valid module name. But …
angular angular-router angular4-router angular-router-loaderI have an Angular 5 application. I have the following code in my app component. I want to hide navbar and …
angular angular-routerI want to write a unit test for my resolver, which needs to take ActivatedRouteSnapshot in its constructor like so: …
angular unit-testing angular-routerI was wondering if there is a way to name my routes in Angular7 so I could just call [routerLink]="…
angular angular-router angular7Consider the following service, @Injectable() export class SagasService { constructor(private route : ActivatedRoute, private router : Router ){ router.events .filter(e => …
angular angular-routerI have an angular 4.3.6 application with lazy-loaded modules. Here is a partial root router: const routes: Routes = [ { path: '', redirectTo: …
angular lazy-loading angular-router angular-router-guardsI would like to pass a JSON object to another page. What I've tried is to pass the JSON string …
ionic-framework angular7 angular-router ionic4I've the following children routes: { path: '', component: LoginSingupComponent, children: [ { path: 'login', component: LoginComponent }, { path: 'singup', component: SingupComponent }, ] }, Navigating to /…
angular angular-routerI'm working on a little project of mine in order to learn something more about Angular, but I really cannot …
angular angular-routing angular-router