标签: angular angular2-changedetection angular-changedetection
我想为angular 7应用中的所有组件更改"default"更改检测策略,并改为使用"onpush"。
"default"
"onpush"
我该怎么办?
我的解决方案是进入每个组件并编写以下代码:
@Component({ ..., changeDetection: ChangeDetectionStrategy.OnPush })
要更改整个应用程序的changedetection策略是正确的方法,还是有其他(更好的方法)方法?
changedetection