在 Angular 14 中,可以使用 ng-content 元素来将内容投射到组件的模板中。在组件内部,可以使用 @ContentChild 或 @ContentChildren 装饰器来注入投射的内容。代码示例:
import { Component, ContentChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-child',
template: `
`
})
export class ChildComponent {
@ContentChild('foo') fooElem: ElementRef;
ngAfterContentInit() {
console.log(this.fooElem.nativeElement);
}
}
在上面的代码中,@ContentChild 装饰器用来注入具有 foo 标记的 ng-content 元素,然后可以使用 ElementRef 来访问该元素的原生 DOM 节点。若要注入多个元素,应使用 @ContentChildren 装饰器。