在使用Angular Router时,有时需要写一些带参数的路由。例如,一个商品详情页面可能有一个参数来表示商品的ID,路由路径看起来像/product/:id
。但是,这种路由写法可能会影响到其他没有参数的路由的匹配。
为解决这个问题,我们可以使用Angular中的通配符路由。通配符路由的意思是匹配所有没有匹配到的路由。我们可以在路由模块中添加以下代码,路由会匹配所有除了那些已经定义的路由之外的所有路由:
{
path: '**',
component: PageNotFoundComponent
}
其中PageNotFoundComponent是一个自定义的组件。
这样,即使用户输入了一个没有定义的路由,也会跳转到PageNotFoundComponent组件。
完整代码示例:
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { HomeComponent } from './home/home.component';
import { ProductDetailsComponent } from './product-details/product-details.component';
import { PageNotFoundComponent } from './page-not-found/page-not-found.component';
const routes: Routes = [
{ path: '', component: HomeComponent },
{ path: 'product/:id', component: ProductDetailsComponent },
{ path: '**', component: PageNotFoundComponent }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
上一篇:Angular14libraryprojectinstallswrongdependencyversion,resultsinconflictwhenbuildingconsumerproject