使用以下代码行在路由模块中将重定向创建到所需的默认路由。
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { HomeComponent } from './home.component';
const routes: Routes = [
{ path: '', redirectTo: '/home', pathMatch: 'full'},
{ path: 'home', component: HomeComponent },
// other routes
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
在这个例子中,如果任何无效URL被输入,它都会被重定向到主页。 顶级路由是一个空路径'',它自动重定向到'home'路由。 ‘pathMatch’描述在执行匹配时如何判断URL是否匹配此路由。 在我们的例子中,'full”表示整个URL路径应该与重定向路径完全匹配,否则重定向将不起作用。