如何将ChangeDetectionStrategy.OnPush设置为每个的默认策略
我的应用程序中的组件,而不是写在每个组件的模板上
changeDetection: ChangeDetectionStrategy.OnPush
?
由于
最诚挚的问候 马克内布拉特
答案 0 :(得分:0)
无法设置全局ChangeDetection。
但是,可以在CLI上进行设置,以便使用ng generate component
(或ng g c
)新生成的所有组件都将其设置为OnPush
。
运行以下命令进行设置:
ng config schematics.@schematics/angular.component.changeDetection OnPush
或者(这是此命令的作用),在您的angular.json
的基本级别添加此块:
// angular.json
{
//...
"schematics": {
"@schematics/angular": {
"component": {
"changeDetection": "OnPush"
}
}
}
}