在Angular 9中,你可以通过更改ɵComponentDef
的属性onPush
来显示变更检测周期的数量。以下是一个具有代码示例的解决方法:
change-detection.component.ts
。import { Component, Input, ChangeDetectionStrategy } from '@angular/core';
@Component({
selector: 'app-change-detection',
template: `
Change Detection Example
{{ count }}
`,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ChangeDetectionComponent {
@Input() count: number = 0;
increment() {
this.count++;
}
}
ChangeDetectionComponent
并传递一个计数值。import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
Root Component
`
})
export class AppComponent {
count: number = 0;
increment() {
this.count++;
}
}
在StackBlitz中创建一个新的Angular项目,并将上述组件的代码粘贴到相应的文件中。
运行项目,并打开浏览器的开发者工具。
在开发者工具的控制台中,输入以下命令以显示变更检测周期的数量:
ng.probe($0).component.changeDetector.detectChanges()
这将手动触发变更检测,并在控制台中显示变更检测周期的数量。
请注意,$0
是指向组件元素的引用,你需要根据实际情况更改它。
希望这可以帮助你显示Angular 9中变更检测周期的数量!