配置路由

Base 标签

Base 标记必须在index.html的标记中设置:

  1. <base href="/">

在演示中,我们使用脚本标记来设置base标记。在实际应用中,必须如上设置。

路由定义对象

Routes类型是定义应用程序路由的路由数组。 这是我们可以设置预期的路径,我们想要使用的组件,我们希望我们的应用程序来理解它们。

每个路由可以有不同的属性; 一些常见的属性是:

  • path - 应用程序在特定路由上时在浏览器中显示的URL
  • component - 当应用程序在特定路由上时要呈现的组件
  • redirectTo - 如果需要重定向路由; 每个路由可以具有在路由中定义的组件或重定向属性(在本章后面讨论)
  • pathMatch - 默认为’prefix’的可选属性。 确定是匹配完整的网址还是仅匹配开头。 当定义一个具有空路径字符串的路径设置pathMatch为’full’时,否则它将匹配所有路径。
  • children - 表示此路由的子路由的路由定义数组(本章后面将介绍)。

要使用路由,请创建 路由配置数组

下面是Routes数组定义的示例:

  1. const routes: Routes = [
  2. { path: 'component-one', component: ComponentOne },
  3. { path: 'component-two', component: ComponentTwo }
  4. ];

See Routes definition

RouterModule

RouterModule.forRootRoutes数组作为参数,并返回配置的路由器模块。 此路由器模块必须在应用程序模块的导入列表中指定。

  1. ...
  2. import { RouterModule, Routes } from '@angular/router';
  3. const routes: Routes = [
  4. { path: 'component-one', component: ComponentOne },
  5. { path: 'component-two', component: ComponentTwo }
  6. ];
  7. export const routing = RouterModule.forRoot(routes);
  8. @NgModule({
  9. imports: [
  10. BrowserModule,
  11. routing
  12. ],
  13. declarations: [
  14. AppComponent,
  15. ComponentOne,
  16. ComponentTwo
  17. ],
  18. bootstrap: [ AppComponent ]
  19. })
  20. export class AppModule {
  21. }
  22. platformBrowserDynamic().bootstrapModule(AppModule);