头像

Angular 入门:依赖注入

什么是依赖注入

  1. 依赖注入: Dependency Injection 简称 DI
  2. 控制反转: Inversion of Control 简称 IOC

实现了 “控制反转” 模式的框架被称为 IOC 容器, Angular 是一个 IOC 容器, Angular 实现 “控制反转” 的手段是 “依赖注入”.

依赖注入的优点

  1. 松耦合, 可重用性.
  2. 提高可测性.

查看更多

Angular 入门:路由

Routes 对象

1
2
3
4
5
6
const routes: Routes = [
{ path: '', redirectTo: '/home', pathMatch: 'full' },
{ path: 'home', component: HomeComponent },
{ path: 'folder', component: FolderComponent },
{ path: '**', component: Code404Component }
];

查看更多