我们可以有多个angular2吗?

前端之家收集整理的这篇文章主要介绍了我们可以有多个angular2吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果有可能有多个路由器插座,我没有任何工作代码但假设我在父母< router-outlet>中有登录页面在AppComponent中.登录后,我必须在父< router-outlet>中显示MyHomeComponent.现在,假设在MyHomeComponent中我想要一个孩子< router-outlet>我希望在用户点击收件箱,发件箱和已加星标的链接显示收件箱邮件,发件箱邮件,已加星标的邮件.请帮我找到这个问题的答案

AppComponent
<路由器出口>< /路由器出口>中

HomeComponent

<a routerLink="/xyz">InBox</a>
<a routerLink="/abc">OutBox</a>
<router-outlet name='outlet1'></router-outlet>

我的路线路径

{ path: 'login',component: LoginComponent},{ path: '',component: LoginComponent },{ path: 'user',children:[ 
         { path: ':name',children:[ 
               {path:'abc',component: InBoxComponent,outlet: 'outlet1' },{path:'xyz',component: OutBoxComponent,outlet:'outlet1' } 
    ] }]},{ path: '**',component: PageNotFoundComponent }
您可以拥有一个主要< router-outlet>对于每个路由和其他命名的< router-outlet name =“abc”> s.寻址这些命名出口的路线称为辅助路线.这些路由反映在()中的URL中,如/ crisis-center(aux:chat; open = true)“

也可以看看

> https://angular.io/docs/ts/latest/guide/router.html
> https://angular.io/docs/ts/latest/api/router/index/Routes-type-alias.html
> https://angular.io/docs/ts/latest/api/router/index/Router-class.html
> @L_301_3@

原文链接:https://www.f2er.com/angularjs/240630.html

猜你在找的Angularjs相关文章