Top "Angular2-router" questions

How to refresh a route's resolved data

Consider the following route configuration: const routes: Routes = [ { path: '', component: AppComponent, resolve: { app: AppResolver }, children: [ { path: 'user/:uid', resolve: { …

angular typescript angular2-router
Cannot match any routes with child routes and new angular 2 RC1 router

ApplicationComponent import { Component } from '@angular/core'; import {Router, ROUTER_DIRECTIVES, Routes, ROUTER_PROVIDERS} from '@angular/router'; import {SchoolyearsComponent} …

typescript angular angular2-routing angular2-router
How to handle multiple queryParams in Angular2

I'm trying to implement a filtering mechanism in a new Angular2 app, that would allow me to filter a list …

angular typescript angular2-routing angular2-services angular2-router
Switch and persist selected tab of ng2-bootstrap <tabset>, <tab> using Angular router

I have a component showing tabs using ng2-bootstrap tabset and tab. Example: <tabset> <tab heading="Info" […

angular angular2-routing ng2-bootstrap angular2-router
In Angular, how I navigate directly to a path inside a lazy loaded module?

I would like to have two top level paths for logging in and registering. I would prefer not having to …

angular routing angular2-routing angular2-router