我有一个名为“主机”的模块,该模块具有自己的路由,我想将其插入到app-routing.module中。但是,我遇到的问题是先加载通配符并显示PageNotFoundComponent,而不是加载Host组件。我有以下文件。
host.module.ts
....
const routes: Routes = [
{
path: 'host',
children: [
{ path: '', component: HostComponent }
]
}
];
@NgModule({
declarations: [HostComponent],
imports: [
CommonModule,
RouterModule.forChild(routes)
]
})
export class HostModule { }
app-routing.module.ts
const routes: Routes = [
{ path: '', component: HomeComponent, pathMatch: "full"},
{ path: '**', component: PageNotFoundComponent }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
app.module.ts
@NgModule({
declarations: [
AppComponent,
HomeComponent,
PageNotFoundComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HostModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.html
<h2>Home</h2>
<ul>
<li>
<h2><a routerLink="/host">host</a></h2>
</li>
</ul>
<router-outlet></router-outlet>
问题:当我运行应用程序并单击“主机”按钮时,它将加载PageNotFoundComponent。我显然希望它转到HostComponent。
答案 0 :(得分:0)
在您的app.module.ts
中,您需要重新订购进口商品
@NgModule({
declarations: [
AppComponent,
HomeComponent,
PageNotFoundComponent
],
imports: [
BrowserModule,
HostModule, <--- this before AppRoutingModule
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
之所以存在,是因为配置中路由的顺序很重要。 https://angular.io/guide/router#configuration
最后一条路径中的**路径是通配符。如果请求的URL与配置中先前定义的路由的任何路径都不匹配,则路由器将选择此路由。这对于显示“ 404-找不到”页面或重定向到其他路由很有用。
路由在配置中的顺序很重要,这是设计使然。路由器在匹配路由时会使用“先赢”策略,因此应将更具体的路由放在不那么具体的路由之上。在上面的配置中,首先列出具有静态路径的路由,然后是与默认路由匹配的空路径路由。通配符路由排在最后,因为它匹配每个URL,并且只有在没有其他路由最先匹配时才应选择通配符路由。