所以我正在更新我的应用程序以使用angular 2 rc1路由。我最初可以加载默认路由' /'正好。但是我最初无法加载非默认路由。 ' /应用&#39 ;.我得到了“不能GET / app /'
app.ts
@Routes([
{
path: '/',
component: HomeLayout
},
{
path: '/app',
component: MainLayout
}
])
export class AppDomain implements OnInit {
constructor(private _router: Router){ }
ngOnInit(){
this._router.navigate(['/']);
}
}
答案 0 :(得分:0)
不确定您要执行的操作但是如果要将HomeLayout组件重定向为默认路由,请将其添加到AppComponent(根组件)中路由定义的 end :
{ path: '*', component: HomeLayout },