这一篇我们带来的是关于组件基础使用的最后一块,内容投影和Vue中的插槽很类似,在组件封装的时候非常有用,我们一起来体验一下。
<div>
编号1
<ng-content></ng-content>
</div>
<app-page-container>
未指定投影位置的内容会被投影到无select属性的区域
</app-page-container>
<div>
编号2
<ng-content select="h3"></ng-content>
<ng-content select=".my-class"></ng-content>
<ng-content select="app-my-hello"></ng-content>
<ng-content select="[content]"></ng-content>
</div>
<app-page-container>
<h3>使用标签锁定投影位置</h3>
<div class="my-class">使用class锁定投影位置</div>
<app-my-hello>使用自定义组件名称锁定投影位置</app-my-hello>
<div content>使用自定义属性锁定投影位置</div>
</app-page-container>
使用
ng-container
来包裹子元素,减少不必要的dom层,类似vue中的template
<div>
编号4
<ng-content select="question"></ng-content>
</div>
<app-page-container>
<ng-container ngProjectAs="question">
<p>内容投影酷吗?</p>
<p>内容投影酷吗?</p>
<p>内容投影酷吗?</p>
<p>内容投影酷吗?</p>
</ng-container>
</app-page-container>
中文网的描述:
ng-container
定义我们的投影区块 ngTemplateOutlet
指令来渲染ng-template
元素。*ngIf
来控制是否渲染投影。<div>
编号3
<ng-content select="[button]"></ng-content>
<p *ngIf="expanded">
<ng-container [ngTemplateOutlet]="content.templateRef"> </ng-container>
</p>
</div>
ng-template
来包裹我们的实际元素。my-hello组件只在ngOnInit()做日志输出来观察打印情况。
<app-page-container>
<div button>
<button appToggle>切换</button>
</div>
<ng-template appContent>
<app-my-hello>有条件的内容投影~</app-my-hello>
</ng-template>
</app-page-container>
指令需要注册哦~
import { Directive, TemplateRef } from '@angular/core';
@Directive({
selector: '[appContent]',
})
export class ContentDirective {
constructor(public templateRef: TemplateRef<unknown>) {}
}
指令需要注册哦~
@Directive({
selector: '[appToggle]',
})
export class ToggleDirective {
@HostListener('click') toggle() {
this.app.expanded = !this.app.expanded;
}
constructor(public app: PageContainerComponent) {}
}
export class PageContainerComponent implements OnInit {
expanded: boolean = false;
@ContentChild(ContentDirective)
content!: ContentDirective;
}
expanded
标识时,只有开启状态my-hello
组件才会初始化,下面的这个ngIf
虽然在页面看不到渲染的内容,但组件实实在在被初始化过了。<div *ngIf="false">
<ng-content *ngIf="false" select="app-my-hello"></ng-content>
</div>
使用这两个装饰器来对被投影的组件进行操作
@ContentChild(HelloWorldComp)
helloComp: HelloWorldComp;
@ContentChildren(HelloWorldComp)
helloComps: QueryList<HelloWorldComp>;
ngAfterContentInit()
钩子执行后对被投影组件进行操作使用这两个装饰器来对指接子组件进行操作
@ViewChild(HelloWorldComp)
helloComp: HelloWorldComp;
@ViewChildren(HelloWorldComp)
helloComps QueryList<HelloWorldComp>;
ngAfterViewInit()
钩子执行后对直接子组件进行操作关于组件的使用我们就先写到这里了,文笔功底有限,加油了~,下一篇打算写写自定义指令的使用。