当前位置:  开发笔记 > 编程语言 > 正文

如何在角度2中默认加载子路径

如何解决《如何在角度2中默认加载子路径》经验,为你挑选了1个好方法。

在应用程序的开始我想加载子路由.

现在是URLcome但是相应的组件没有加载到该部分,但是当再次点击实际的URL时.

像route configure一样

  const appRoutes: Routes = [
        { path: 'a', component: AComponent,
         children:[
                   { path:'x',component:AXcomponent }
                   ]
        },
        { path: 'b', component: bComponent, }
]

现在我想加载路径a/x如何在页面开头加载?



1> Santanu Bisw..:

添加空路径路径作为自动重定向

const appRoutes: Routes = [
    {
        path:'',
        redirectTo: 'a',
        pathMatch: 'full' 
    },
    {
        path: 'a',
        component: AComponent,
        children:[
            {
                path:'',
                redirectTo: 'x',
                pathMatch: 'full' 
            },
            {
                path:'x',
                component: AXcomponent 
            }
        ]
    },
    { 
        path: 'b',
        component: bComponent
    }
];


如果儿童路线包含插座怎么办?
推荐阅读
路人甲
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有