dinglittle / angular-start

ng2 学习
1 stars 0 forks source link

ng2生命周期 #4

Open dinglittle opened 7 years ago

dinglittle commented 7 years ago

生命周期

dinglittle commented 7 years ago

ngDoCheck 检测策略

设置 ngDoCheck 检测策略为push

//@Component 内,设置  
changeDetection:ChangeDetectionStrategy.OnPush

//需要在 import 导入 ChangeDetectionStrategy
import{ Component, Input , ChangeDetectionStrategy} from '@angular/core';