Accessing Other Components
@ViewChild and @ViewChildren
The @ViewChild and @ViewChildren decorators provide access to the instantiated class of child components, allowing you to interact with non-private fields programmatically.
The @ViewChild
is a decorator function that takes the name of a component class as its input and finds its selector in the template of the containing component to bind to. @ViewChild
can also be passed a template reference variable.
For example, we bind the class AlertComponent
to its selector <app-alert>
and assign it to the property alert
. This allows us to gain access to class methods, like show()
.
In the interest of separation of concerns, we'd normally want to have child elements take care of their own behaviors and pass in an @Input()
. However, it might be a useful construct in keeping things generic.
When there are multiple embedded components in the template, we can also use @ViewChildren
. It collects a list of instances of the Alert component, stored in a QueryList object that behaves similar to an array.
As shown above, given a class type to @ViewChild
and @ViewChildren
a child component or a list of children component are selected respectively using their selector from the template. In addition both @ViewChild
and @ViewChildren
can be passed a selector string:
Note that view children will not be set until the ngAfterViewInit
lifecycle hook is called.
@ContentChild and @ContentChildren
@ContentChild
and @ContentChildren
work the same way as the equivalent @ViewChild
and @ViewChildren
, however, the key difference is that @ContentChild
and @ContentChildren
select from the projected content within the component.
Again, note that content children will not be set until the ngAfterContentInit
component lifecycle hook.
Last updated