赞
踩
我觉得我已经会了angular的基本套路了,导入+配置,所以路由也是一样。
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
}
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 },
{ path: 'contactus', redirectTo: 'contact' },
];
并没有定义contactus的绑定组件,所以这里的意思是当地址为contactus时,自动重定向(跳转)到contact的页面,此页面已经与ContactComponent进行绑定。
与红色区域知识点相同,不同点在pathMatch,默认为prefix。
pathMatch?: string | |
---|---|
prefix | 默认情况下,路由器从左方检查URL元素以查看URL是否与给定路径匹配,并在匹配时停止。例如,“ / team / 11 / user”与“ team /:id”匹配。 |
full | 路径匹配策略“完整”与整个URL匹配。重定向空路径路由时,执行此操作很重要。否则,因为空路径是任何URL的前缀,所以路由器即使在导航到重定向目标时也将应用重定向,从而造成无限循环。 |
前提也是导入(RouterModule),别忘了导入+配置的模式。
router-outlet元素标示了各个路由组件的内容应该在哪里被渲染。
router-outlet在整个导航目录的正下方,当访问/home时候,这里便是HomeComponent被渲染的地方,相同在访问/about,/contact同理。打个比方,点到谁,谁上场,router-outlet提供一个出口,场地的作用。
还是刚刚那张图,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
]
})
将{ provide: APP_BASE_HREF, useValue: ‘/’ }放到providers中,等同于在HTML中使用
。
路由引入配置安装完毕了,得一路由一组件匹配一下。
不多说了,import就完事了
angular的默认策略为PathLocationStrategy,也就是HTML5路由,使用默认策略,则路由的路径是常规路径,例如/home,/contact。
还有另一种路由策略,HashLocationStrategy。
使用一个变量或者路由参数
/route/:param
/articles/:id
要想使用路由参数,首先也是逃不过导入的:
import { ActivatedRoute } from '@angular/router';
const routes: Routes = [
{
path: 'articles/:id', component: ArticlesComponent
}
];
export class ArticleComponent {
id: string;
constructor(private route: ActivatedRoute) {
route.params.subscribe(params => { this.id = params['id']; }); }
}
此时如果访问/articles/177,组件的id属性就接收到177。
利用嵌套路由,可以封装父级路由的功能,并在它的子级路由使用这些功能。
children属性声明子级路由。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。