例如,我使用这样的路由器链接:
<li><a [router-link]="['/start']">Start</a></li>
但是我怎样才能通过打字稿将路由器更改为 /start 呢?
例如,我使用这样的路由器链接:
<li><a [router-link]="['/start']">Start</a></li>
但是我怎样才能通过打字稿将路由器更改为 /start 呢?
与哈希位置策略相关的小更新。
在 angular2 的最新版本中,该bind
方法已被弃用,因此您可以使用provide
方法更改定位策略。
bootstrap(MyApp, [
ROUTER_PROVIDERS,provide(LocationStrategy, {useClass: HashLocationStrategy})
]);
我相信你在问如何在 Angular 2 中配置你的路由。
2) 使用@RouteConfig 在组件上设置路由
可选:在您的网址中添加井号 (#)
这是一个例子:
import {Component, View, bind, bootstrap} from 'angular2/angular2';
import {routerInjectables, routerDirectives, Router, RouteConfig} from 'angular2/router';
import {LocationStrategy, Location, HashLocationStrategy } from 'angular2/router'; // options2: HTML5LocationStategy
// Components
import {Home} from 'home';
import {SomewhereElse} from 'somePlace';
@Component({
selector: 'app-name'
})
@View({
template: '<router-outlet></router-outlet>',
directives: [routerDirectives]
})
@RouteConfig([
{path: '/start', as: component: Home},
{path: '/place/:placeId', component: SomewhereElse}
])
class AppName {}
bootstrap(AppName, [
routerInjectables,
bind(LocationStrategy).toClass(HashLocationStrategy) // for hashbang routes (/#/)
// alternative: use HTML5LocationStrategy
]);