我想在Angular2中創建嵌套路由。默認路由參數Angular2:嵌套路由
這裏是我的組件的代碼: app.partial.html
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Brand</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a [routerLink]="['Git']">Git Cmp</a></li>
<li><a [routerLink]="['Courses']">Courses Cmp</a></li>
<li><a [routerLink]="['Archives']">Archives Cmp</a></li>
</ul>
</div>
</div>
這裏是我的主要觀點,在我所包含[routerLink]=['Archieves']
鏈接到子組件與它是自己的路由。
app.component.ts
@RouteConfig([
{ path: '/git', name: 'Git', component: GitComponent },
{ path: '/courses', name: 'Courses', component: CoursesComponent, useAsDefault: true },
{ path: '/archives/...', name: 'Archives', component: ArchivesComponent },
{ path: '/*other', name: 'Other', redirectTo: ['Git'] }
])
這裏是父組件的路由配置,其中包括/archives/...
路線預計其子路由。
archives.component.ts
@RouteConfig([
{ path: '/:id', name: 'Archive', component: ArchiveComponent, useAsDefault: true }
])
你可以看到路由子組件的配置上面。正如你所看到的,它有id
參數,所以當我們重定向到這條路線時,它會期望一些價值。
問題
的問題是:有沒有一種方法來設置路線PARAM默認值。因爲我有一個由我的鏈接引起的錯誤,它不包含所需的路由參數。
例外:'id'的路由生成器未包含在傳遞的參數中。在[['Archives] in AppComponent @ 18:23]
謝謝你的幫助!
你在談論什麼重定向?重定向到'Git',但錯誤來自'Archive'。什麼操作產生這個錯誤? –
由'Archives'路由產生的錯誤,不關注其他路由,它們按預期工作。問題出現在'archives-> archive'路徑中。 – Mikki