当前位置:   article > 正文

Angular权威教程之路由篇_angular 路由

angular 路由

在这里插入图片描述

为什么使用路由

  • 将应用程序划分为多个分区
  • 维护应用程序的状态
  • 基于某些规则保护应用分区

我觉得我已经会了angular的基本套路了,导入+配置,所以路由也是一样。

整个路由的API

https://angular.io/api/router/Route#properties

interface Route {
  path?: string
  pathMatch?: string
  matcher?: UrlMatcher
  component?: Type<any>
  redirectTo?: string
  outlet?: string
  canActivate?: any[]
  canActivateChild?: any[]
  canDeactivate?: any[]
  canLoad?: any[]
  data?: Data
  resolve?: ResolveData
  children?: Routes
  loadChildren?: LoadChildren
  runGuardsAndResolvers?: RunGuardsAndResolvers
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

导入

import {   RouterModule,   Routes } from '@angular/router'; 
  • 1

配置

const routes: Routes = [   
{ path: '', redirectTo: 'home', pathMatch: 'full' },   
{ path: 'home', component: HomeComponent },   
{ path: 'about', component: AboutComponent },   
{ path: 'contact', component: ContactComponent },   
{ path: 'contactus', redirectTo: 'contact' }, 
];
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

红色区域:

并没有定义contactus的绑定组件,所以这里的意思是当地址为contactus时,自动重定向(跳转)到contact的页面,此页面已经与ContactComponent进行绑定。

黄色区域:

与红色区域知识点相同,不同点在pathMatch,默认为prefix。

pathMatch?: string
prefix默认情况下,路由器从左方检查URL元素以查看URL是否与给定路径匹配,并在匹配时停止。例如,“ / team / 11 / user”与“ team /:id”匹配。
full路径匹配策略“完整”与整个URL匹配。重定向空路径路由时,执行此操作很重要。否则,因为空路径是任何URL的前缀,所以路由器即使在导航到重定向目标时也将应用重定向,从而造成无限循环。

安装路由

更改NgModule:

  • 导入RouterModule
  • 在NgModule中的imports数组里使用RouterModule.forRoot(routes)来安装路由配置
    在这里插入图片描述

关于RouterOutlet

前提也是导入(RouterModule),别忘了导入+配置的模式。
router-outlet元素标示了各个路由组件的内容应该在哪里被渲染。
在这里插入图片描述
router-outlet在整个导航目录的正下方,当访问/home时候,这里便是HomeComponent被渲染的地方,相同在访问/about,/contact同理。打个比方,点到谁,谁上场,router-outlet提供一个出口,场地的作用。

关于routerLink

还是刚刚那张图,routerLink可以在不重载页面的情况下链接路由。
相对于 <a href="/#/home">Home</a> 之前直接用href超链接形式的优化。

<base href="/">

在html中的位置:
在这里插入图片描述
如果一个路由的路径为/home ,base元素的声明是href=“mine”,那么程序将使用/mine/#/home为实际路径。

等同方法:

@NgModule({   
declarations: [ RoutesDemoApp ],  
 imports: [     
 BrowserModule,     
 RouterModule.forRoot(routes) // <-- routes  
  ],   
 bootstrap: [ RoutesDemoApp ],   
 providers: [     
 { provide: LocationStrategy, useClass: HashLocationStrategy },     
 { provide: APP_BASE_HREF, useValue: '/' } // <--- this right here  
  ] 
  }) 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

将{ provide: APP_BASE_HREF, useValue: ‘/’ }放到providers中,等同于在HTML中使用

创建组件

路由引入配置安装完毕了,得一路由一组件匹配一下。

导入组件

不多说了,import就完事了

路由策略

angular的默认策略为PathLocationStrategy,也就是HTML5路由,使用默认策略,则路由的路径是常规路径,例如/home,/contact。

还有另一种路由策略,HashLocationStrategy。

路由参数

使用一个变量或者路由参数

/route/:param 
  • 1
/articles/:id 
  • 1

要想使用路由参数,首先也是逃不过导入的:

import { ActivatedRoute } from '@angular/router'; 
  • 1
const routes: Routes = [   
{ 
path: 'articles/:id', component: ArticlesComponent 
} 
];
  • 1
  • 2
  • 3
  • 4
  • 5
export class ArticleComponent {   
id: string; 
constructor(private route: ActivatedRoute) {     
route.params.subscribe(params => { this.id = params['id']; });   } 
} 
  • 1
  • 2
  • 3
  • 4
  • 5

此时如果访问/articles/177,组件的id属性就接收到177。

嵌套路由

在这里插入图片描述
利用嵌套路由,可以封装父级路由的功能,并在它的子级路由使用这些功能。

在这里插入图片描述
children属性声明子级路由。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/133659
推荐阅读
相关标签
  

闽ICP备14008679号