Reputation: 2065
According to the docs the AfterContentChecked
lifecycle hook is triggered:
after Angular checks the content projected into the component
What does "Angular checks" in the documentation mean, exactly?
Upvotes: 9
Views: 15771
Reputation: 13058
AfterContentChecked, component-only hook, is called after Angular checks the content projected into the component (it's data-bound properties).
When does Angular check the projected content?
AfterContentInit
hook finishes.What causes the application state change?
See also: Angular change detection explained.
Upvotes: 16