Angular框架提供了一个内置路由器,可以用来在单页面应用程序中管理路由,以便用户可以在不刷新整个页面的情况下导航到不同的视图。
下面是如何在Angular 13中配置路由的示例:
import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router';
const routes: Routes = [ { path: '', redirectTo: 'home', pathMatch: 'full' }, { path: 'home', component: HomeComponent }, { path: 'about', component: AboutComponent }, { path: 'contact', component: ContactComponent } ];
@NgModule({ declarations: [ AppComponent, HomeComponent, AboutComponent, ContactComponent ], imports: [ BrowserModule, RouterModule.forRoot(routes) ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }
这样就可以让Angular应用程序具有路由功能,使用户可以通过URL导航到不同的视图。
下面是如何在组件中定义路由链接的示例:
在用户点击这些链接时,Angular会根据路径匹配路由配置,渲染对应的组件。