1
角度2のベータ17を使用していますが、別のコンポーネントにルーティングしようとしているときにエラーが発生しました。親切に私を導く。私はあなたにとても感謝しています。角度2別のコンポーネントにルーティング中にエラーが発生しました
import {Component} from 'angular2/core';
import {Http, HTTP_PROVIDERS} from 'angular2/http';
import {MvcComponent} from "./components/mvc.component";
import {Location} from 'angular2/platform/common';
import {Router, RouteDefinition, RouteConfig, ROUTER_DIRECTIVES} from "angular2/router";
@Component({
selector: 'my-app',
templateUrl: './appScripts/layout/sidebar.html',
directives: [ROUTER_DIRECTIVES]
})
@RouteConfig([
{
path: '/index',
name: 'Index',
component: MvcComponent,
useAsDefault: true
}
])
export class AppComponent {
Profileimageurl: string = './images/flat-avatar.png';
public routes: RouteDefinition[] = null;
constructor(private router: Router,
private location: Location) {
}
getLinkStyle(route: RouteDefinition) {
return this.location.path().indexOf(route.path) > -1;
}
}