1

例如,我使用这样的路由器链接:

<li><a [router-link]="['/start']">Start</a></li>

但是我怎样才能通过打字稿将路由器更改为 /start 呢?

4

2 回答 2

4

与哈希位置策略相关的小更新。

在 angular2 的最新版本中,该bind方法已被弃用,因此您可以使用provide方法更改定位策略。

bootstrap(MyApp, [
  ROUTER_PROVIDERS,provide(LocationStrategy, {useClass: HashLocationStrategy})
]);
于 2015-10-30T09:21:04.233 回答
3

我相信你在问如何在 Angular 2 中配置你的路由。

  • 1)导入并加载您的路由器
  • 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
]);
于 2015-07-23T09:38:58.200 回答