在Angular路由器中设置通配符路由,以便在无法匹配任何路由时显示404错误页面。
首先,在app-routing.module.ts文件中导入NotFoundComponent组件,并在路由器中添加通配符路由:
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { NotFoundComponent } from './not-found/not-found.component';
const routes: Routes = [
// your other routes here
// wildcard route for a 404 page
{ path: '**', component: NotFoundComponent }
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
然后,在not-found.component.ts文件中创建NotFoundComponent组件:
import { Component } from '@angular/core';
@Component({
template: `
404 Not Found
The requested URL was not found on this server.
`
})
export class NotFoundComponent { }
最后,在app.component.html文件中添加一个路由出口:
现在,当应用程序第一次加载时,在无法匹配任何路由时将自动显示404错误页面。