1.安装angular-cli
1 | $ npm install -g @angular/cli |
1 | //装饰器 ({ |
2.安装第三方依赖
1 | npm install jquery @types/jquery --save-dev //@types/jquery为了让ts使用jquery |
3.安装组件
1 | ng g component name //创建新组建 |
4.路由
1.传递数据
1
2
3
4
5
6
7
8
//在查询参数中传递数据
/produst?id=1&name=2 => ActivatedRoute.queryParams[id]
//在路由路径中传递参数
{path:/product/:id} => .product/1 => ActivatedRoute.params[id]
//在路由配置中传递数据
{path:/product, compontent:ProducrComponent, data:[[isProd:true]}} => ActivatedRoute.data[0][isProd]
2.重定向
1
2
3
4
5
{
path:"",
redirectTo:"/home",//重定向到home组件
pathMatch:"full"
}
3.子路由
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
path: 'home',
component:HomeComponent
}
{
path: 'home',
component:HomeComponent,
children:[
{
path:'',
component:XxxComponent
}
]
}
4.辅助路由
1
2
3
4
5
6
7
8
<router-outlet></router-outlet>
<router-outlet name="aux"></router-outlet>
{path:"xxx",compontent:XxxComonent,outlet:"aux"}
{path:"yyy",compontent:YyyComonent,outlet:"aux"}
<a [routerLink]="[{outlets:{aux:'xxx'}}]">Xxx</a>
<a [routerLink]="[{outlets:{aux:'yyy'}}]">Yyy</a>
5.路由守卫(满足某些条件才能跳转路由)
>`CanActive`:处理导航到某路由的情况。
`CanDeactivate`:处理从当前路由离开的情况
`Resolve`:在路由激活之前获取路由数据