## ComponentRef
表示通过ComponentFactory创建的组件的实例。
`ComponentRef`提供对组件实例的访问以及与此组件实例相关的其他对象,并允许您通过`destroy`方法销毁组件实例。
### 类定义
```typescript
class ComponentRef {
C
location : ElementRef
injector : Injector
instance : C
hostView : ViewRef
changeDetectorRef : ChangeDetectorRef
componentType : Type<any>
destroy() : void
onDestroy(callback: Function) : void
}
```
### 属性
- C
- location : `ElementRef` 组件实例的宿主元素所在的位置
- injector : `Injector` 组件实例存在的注射器
- instance : C 组件实例
- hostview : `ViewRef` 组件实例的宿主视图`ViewRef`
- changeDetectorRef : `ChangeDetectorRef` 组件的ChangeDetectorRef
- componentType: `Type<any>` 组件类型
- destroy() : `void` 销毁组件实例及其附加数据
- onDestroy(callback: `Function`) : `void` 允许注册将在组件销毁时调用的回调。
- 说明
- angular 1.x
- ngModelController
- ngOptions
- ngModelOptions
- lifecycle
- directive
- angular 2
- @angular/forms
- 类
- AbstractControl
- AbstractControlDirective
- AbstractFormGroupDirective
- FormControl
- FormArray
- FormBuilder
- FormGroup
- NgControl
- 接口
- controlValueAccessor
- 指令
- DefaultValueAccessor
- Angular 2 生命周期
- OnInit
- DoCheck
- @angular/router
- 配置
- Routes
- 指令
- RouterOutlet
- RouterLink
- 接口
- ActivatedRoute
- UrlTree
- NavigationExtras
- ActivatedRouteSnapshot
- RouterStateSnapshot
- 类
- UrlSegment
- UrlSegmentGroup
- UrlSerializer
- DefaultUrlSerializer
- Router
- bug记得
- @angular/http
- 类
- Http
- Body
- Response
- ResponseOptions
- Header
- Request
- RequestOptions
- URLSearchParams
- @angular/core
- decorator
- Component-decorator
- animation
- DI
- linker
- TemplateRef
- ElementRef
- EmbeddedViewRef
- ViewRef
- ViewContainerRef
- Query
- ComponentFactory
- ComponentRef
- Renderer
- change_detection
- KeyValueDiffers
- IterableDiffers
- ChangeDetectorRef
- ChangeDetectionStrategy
- Zone
- ngZone
- @angular/common
- 指令
- NgTemplateOutlet
- QueryList
- bootstrap4
- card
- form
- 重点关注博客
- 学习过的文章
- 笔记
- Angular 2 双向绑定
- 将字符串解析成DOM
- rx相关
- operators
- combineLatest
- combineAll
- concat(All, Map, *MapTo)
- 背压(backpressure)
- js事件keycode对应表
- 装饰器
- 有用的代码摘录
- 日期操作
- 数量操作
- 字符操作
- rxjs问题
- 小示例
- h5面试准备
- react
- 开发遇到的问题