路由器如何在@NgModule以角度2

时间:2016-09-06 03:18:43

标签: angular angular2-routing

我想加载Routes表单服务器,并希望在@NgModule执行之前绑定在RouterModule.forChild中。 任何人都可以帮助我。

const homeRoutes: Routes = [
{ path: '', component: HomeComponent },
{
    path: '',
    component: HomeComponent,
    children: [
        {
            path: 'hero',
            loadChildren: './apps/hero/hero.module#HeroModule'
        },
        {
            path: 'product',
            loadChildren: './apps/product/product.module#ProductModule',
            outlet: 'dashboard'
        }
        ]
},
{ path: 'heroes', loadChildren: './apps/hero/hero.module#HeroModule' }
];

export const homeRouting = RouterModule.forChild(homeRoutes);

我想加载" homeRoutes"来自服务器的数据。

0 个答案:

没有答案