Angular 7,如何将所有组件的“更改检测策略”更改为按推?

时间:2019-07-12 12:36:00

标签: angular angular2-changedetection angular-changedetection

我想为angular 7应用中的所有组件更改"default"更改检测策略,并改为使用"onpush"

我该怎么办?

我的解决方案是进入每个组件并编写以下代码:

@Component({
   ...,
   changeDetection: ChangeDetectionStrategy.OnPush
})

要更改整个应用程序的changedetection策略是正确的方法,还是有其他(更好的方法)方法?

0 个答案:

没有答案