I am currently playing with angular2 routing. Each thing works as expected, but manually typing the route URL in the browser does not work.
In the current code I'm using
app.ts
import {Component} from 'angular2/core';
import {Route,RouteConfig,ROUTER_DIRECTIVES,ROUTER_PROVIDERS} from "angular2/router";
import {DashboardComponent} from "./dashboard/dashboard.component";
import {UsersComponent} from "./user/users.component";
@Component({
selector:'app',
template:`
<h1>{{title}}</h1>
<nav>
<a [routerLink]="['Dashboard']">Dashboard</a>
<a [routerLink]="['Users']">Users</a>
</nav>
<router-outlet></router-outlet>
`,
directives:[ROUTER_DIRECTIVES],
providers:[ROUTER_PROVIDERS]
})
@RouteConfig([
new Route({
path:'/dashboard',
component:DashboardComponent,
name:'Dashboard',
useAsDefault:true
}),
new Route({
path:'/users',
component:UsersComponent,
name:'Users'
})
])
export class App{
}
boot.ts
import {bootstrap} from 'angular2/platform/browser';
import {App} from "./app";
import {HashLocationStrategy} from "angular2/router";
import {LocationStrategy} from "angular2/router";
import {ROUTER_PROVIDERS} from "angular2/router";
import {provide} from "angular2/core";
bootstrap(App, [
ROUTER_PROVIDERS,
provide(LocationStrategy, {useClass: HashLocationStrategy})
]);
Routing using anchor tags works fine, but when I manually type in the same URL ( http: // localhost: 3000 / users or http: // localhost: 3000 / dashboard ) in the browser and press Enter
Cannot GET /users
or
Cannot GET /dashboard
Please suggest me how I can change the browser location URL according to the path segment (/ users or / dashboard) and activate the corresponding component (or UsersComponent or DashboardComponent) and display its view.