Home > Article > Web Front-end > One article to understand the three types of content projection in Angular (single slot, multi-slot, conditional)
This article will take you to understand the content projection in angular, and introduce single-slot content projection, multi-slot content projection, and conditional content projection. I hope it will be helpful to everyone!
[Related tutorial recommendation: "angular tutorial"]
Single-slot content projection refers to creating a component into which you can project a component.
zippy-basic.component.ts
import { Component } from '@angular/core'; @Component({ selector: 'app-zippy-basic', template: ` <h2>单插槽内容投影</h2> <ng-content></ng-content> ` }) export class ZippyBasicComponent {}
With the ng-content
element, users of this component can now project their own messages to the component middle. For example:
app.component.html
<!-- 将 app-zippy-basic 元素包裹的全部内容投影到 zippy-basic 组件中去 --> <app-zippy-basic> <p>单插槽内容投影:投影数据</p> </app-zippy-basic>
The effect is as follows:
ng-content element is a placeholder, it does not Real DOM elements will be created. Those custom attributes of
ng-content
will be ignored.
- The component template contains multiple
ng-content
tags.- In order to distinguish the projected content that can be projected to the corresponding
ng-content
tag, you need to use theselect
attribute on theng-content
tag as identification .select
Attributes support any combination of tag names, attributes, CSS classes, and :not pseudo-classes.- The
ng-content
tag without adding theselect
attribute will be used as the default slot. All matching projected content will be projected at the position of the ng-content.
zippy-multislot.component.ts
import { Component } from '@angular/core'; @Component({ selector: 'app-zippy-multislot', template: ` <h2>多插槽内容投影</h2> <ng-content></ng-content> <ng-content select="[question]"></ng-content> ` }) export class ZippyMultislotComponent {}
app.component.html
<!-- 使用 question 属性的内容将投影到带有 `select=[question]` 属性的 ng-content 元素。 --> <app-zippy-multislot> <p question style="color: hotpink;"> 带question属性的p元素 </p> <p style="color: lightgreen">不带question属性的p元素-->匹配到不带select属性的ng-content</p> <p>不带question属性的p元素-->匹配到不带select属性的ng-content</p> </app-zippy-multislot>
The effect is as follows:
In the previous example, only the second ng-content element has the select attribute defined. As a result, the first ng-content element will receive any other content projected into the component.
It is recommended to use the
ng-container
tag because it is not required Render real DOM elements.
<ng-container *ngTemplateOutlet="templateRefExp; context: contextExp"></ng-container> <!-- 等同 --> <ng-container [ngTemplateOutlet]="templateRefExp" [ngTemplateOutletContext]="contextExp"></ng-container>
Parameters | Type | Description |
---|---|---|
templateRefExp | TemplateRef | null | A string used to define the template reference and the context object of the template |
contextExp | Object | null | is an object whose key name can be bound using the let statement in the local template. When using $implicit as a key name in a context object, it will be used as the default value. |
ng-template
The #ID
of the tag will match templateRefExp
, and ng- The content of the template
tag is embedded in the specified ngTemplateOutlet
.
Example 1:
<header>头部</header> <main> <h3>内容:</h3> <ng-container [ngTemplateOutlet]="greet"></ng-container> </main> <footer>底部</footer> <ng-template #greet> <div> <h4>hi!</h4> <h4>hello my dear friend!</h4> </div> </ng-template>
Effect:
: Relevant to the content sub-node,
Operation of the projected content;
: Relevant to the view sub-node,
Manipulate your own view content;
First create two components
/**** part-b.component.ts ****/ import { Component, OnInit,Output} from '@angular/core'; @Component({ selector: 'app-content-part-b', templateUrl: './part-b.component.html', styleUrls: ['./part-b.component.scss'] }) export class PartBComponent implements OnInit { constructor() { } ngOnInit() { } public func():void{ console.log("PartB"); } }
/**** part-a.component.ts ****/ import { Component, OnInit, ContentChild } from '@angular/core'; // 1、引入 part-b 组件 import { PartBComponent } from '../part-b/part-b.component'; @Component({ selector: 'app-content-part-a', templateUrl: './part-a.component.html', styleUrls: ['./part-a.component.scss'] }) export class PartAComponent implements OnInit { // 2、获取投影 @ContentChild(PartBComponent) PartB:PartBComponent constructor() { } ngOnInit() {} ngAfterContentInit(): void { // 3、调用 part-b 组件的 func() 方法 this.PartB.func(); } public func() { console.log('PartA') } }
Project the content of the
part-b component to part-a
In the component<pre class="brush:js;toolbar:false;"> <!-- content.component.html -->
<div>
<div>Content</div>
<div>
<app-content-part-a>
<!-- 投影在part-a组件中的内容 -->
<h1>PartA--start</h1>
<app-content-part-b></app-content-part-b>
<span>PartA--end</span>
</app-content-part-a>
</div>
</div></pre>
ngAfterContentInit()ViewChildIt is related to the initialization of the projected content, so we are concerned with the projected content The operation should be carried out after its initialization is completed.
operation in the previous part is performed when the incoming content is projected, and ViewChild
operates on its own view content Modify the previous part of
content.component.html
as follows: <pre class="brush:js;toolbar:false;"> <!-- content.component.html -->
<div>
<div>Content</div>
<div>
<!-- 在此处引用模板变量 #partA -->
<app-content-part-a #partA>
<h1>PartA--start</h1>
<app-content-part-b></app-content-part-b>
<span>PartA--end</span>
</app-content-part-a>
</div>
</div></pre><pre class="brush:js;toolbar:false;">/**** content.component.ts ****/
import { Component, OnInit, ViewChild } from &#39;@angular/core&#39;;
@Component({
selector: &#39;app-content&#39;,
templateUrl: &#39;./content.component.html&#39;,
styleUrls: [&#39;./content.component.scss&#39;]
})
export class ContentComponent implements OnInit {
// 2、获取视图 partA
@ViewChild(&#39;partA&#39;) partA: any;
constructor() { }
ngOnInit() {}
ngAfterViewInit(): void {
// 3、调用 part-a 组件的 func() 方法
this.partA.func();
}
}</pre>
ngAfterContentInit( )ContentChildcorresponds to
ngAfterViewInit()
(View node initialization is after initialization of projected content)
and ViewChild
There are also plural forms, namely ContentChildren
and ViewChildren
. They get a collection of nodes, and there is no difference between the others. is written as follows:
import { Component, OnInit, ContentChild,ContentChildren ,QueryList } from '@angular/core'; import { PartBComponent } from '../part-b/part-b.component'; @Component({ selector: 'app-content-part-a', templateUrl: './part-a.component.html', styleUrls: ['./part-a.component.scss'] }) export class PartAComponent implements OnInit { @ContentChildren(PartBComponent) PartBs: QueryList<PartBComponent>; constructor() { } ngOnInit() {} }
For more programming-related knowledge, please visit:
Introduction to ProgrammingThe above is the detailed content of One article to understand the three types of content projection in Angular (single slot, multi-slot, conditional). For more information, please follow other related articles on the PHP Chinese website!