SoFunction
Updated on 2025-04-04

Detailed explanation of Angular custom structure directives

1. <ng-template> element

import { Component, TemplateRef, ViewContainerRef, ViewChild,
 AfterViewInit } from '@angular/core';
@Component({
 selector: 'app-code404',
 template: `
 &lt;!-- Use a template variable here,Use in components@ViewChildDecorator gets template elements--&gt;
  &lt;ng-template #tpl&gt;
   Big Keriy !
  &lt;/ng-template&gt;
 `,
})
export class Code404Component implements AfterViewInit{

 // @ViewChild Decorator Gets Template Element @ViewChild('tpl')
 tplRef: TemplateRef&lt;any&gt;;
 constructor(private vcRef: ViewContainerRef) {}
 ngAfterViewInit() {

  // Create an embedded view using the createEmbeddedView method of the ViewContainerRef object.  ();
 } }

In this way, we actually get something in the view...ah, it's a 'Big Keriy!' string.

2. ngTemplateOutlet directive

a. ngTemplateOutlet

It is the same as routerOutlet, put the view (the content in the <ng-template> tag) under the corresponding ngTemplateoutlet.

import { Component } from '@angular/core';
 @Component({
  selector: 'app-code404',
  template: `
   <ng-template #stpl>
    Hello, Semlinker!
   </ng-template>
   <ng-template #atpl>
    Big Keriy !
   </ng-template>
   <div [ngTemplateOutlet]="atpl"></div>
   <div [ngTemplateOutlet]="stpl"></div>
`, })
 export class Code404Component { }

The final view should be:

Big Keriy !
Hello, Semlinker!

b. ngOutletContex

You can tell the meaning by looking at the name.

The ngTemplateOutlet directive is based on the TemplateRef object. When using the ngTemplateOutlet directive, the context object of EmbeddedViewRef can be set through the ngTemplateOutletContext property. You can use let syntax to declare the binding context object attribute name.

import { Component, TemplateRef, ViewContainerRef, ViewChild,
 AfterViewInit } from '@angular/core';
@Component({
 selector: 'app-code404',
 template: `
  &lt;!-- HeremessageyMap to belowcontextmiddlemessage Use interpolation expression to displaymessageValue of --&gt;
  &lt;ng-template #stpl let-message="message"&gt;
   &lt;p&gt;{{message}}&lt;/p&gt;
  &lt;/ng-template&gt;
  &lt;!-- HeremessageyMap to belowcontextmiddlemessage , let-msgis a way with syntax sugar variable name ismsg--&gt;
  &lt;ng-template #atpl let-msg="message"&gt;
   &lt;p&gt;{{msg}}&lt;/p&gt;
  &lt;/ng-template&gt;
  &lt;!-- If the variable value is not specified, it will be displayed $implicit Value of--&gt;
  &lt;ng-template #otpl let-msg&gt;
   &lt;p&gt;{{msg}}&lt;/p&gt;
  &lt;/ng-template&gt;
  &lt;div [ngTemplateOutlet]="atpl"
     // Here ngOutletContext binds the context object     [ngOutletContext]="context"&gt;
  &lt;/div&gt;
  &lt;div [ngTemplateOutlet]="stpl"
     [ngOutletContext]="context"&gt;
  &lt;/div&gt;
  &lt;div [ngTemplateOutlet]="otpl"
     [ngOutletContext]="context"&gt;
  &lt;/div&gt;
 `,
})
export class Code404Component implements AfterViewInit{
 @ViewChild('tpl')
 tplRef: TemplateRef&lt;any&gt;;
 constructor(private vcRef: ViewContainerRef) {}
 ngAfterViewInit() {
  ();
 }
 context = { message: 'Hello ngOutletContext!',
  $implicit: 'great, Semlinker!' };
  // Here $implicit is a fixed writing method}

Let's look at the output view first:

Hello ngOutletContext!
Hello ngOutletContext!
Hello, Semlinker!

3. ngComponentOutlet directive

It feels great to listen to the name. This is not an insertion view, but an insertion component!

This directive uses a declared way to load components dynamically.

Write the components first, there are two in it. . Components:

 @Component({
  selector: 'alert-success',
  template: `
   <p>Alert success</p>
  `,
 })
 export class AlertSuccessComponent { }
 @Component({
  selector: 'alert-danger',
  template: `
   <p>Alert danger</p>
  `,
 })
 export class AlertDangerComponent { }
 @Component({
  selector: 'my-app',
  template: `
   <h1>Angular version 4</h1>
   <ng-container *ngComponentOutlet="alert"></ng-container>
   <button (click)="changeComponent()">Change component</button>
 `, })
 export class AppComponent {
   alert = AlertSuccessComponent;
  changeComponent() {
    = AlertDangerComponent;
 } 
}

Of course, you also need to declare the entry in the module:

// 
@NgModule({
  // ...
  declarations: [
   AppComponent,
   SignUpComponent,
   AlertSuccessComponent,
   AlertDangerComponent
  ],
  entryComponents: [    // The components used in the commands are written here   AlertSuccessComponent,
   AlertDangerComponent
],
// ...
})

This way you can use the ngComponentOutlet directive to insert components and play with it:

&lt;!-- Simple syntax --&gt;
&lt;ng-container *ngComponentOutlet="componentTypeExpression"&gt;&lt;/ng-container&gt;

&lt;!-- Complete syntax --&gt;
&lt;ng-container *ngComponentOutlet="componentTypeExpression;
   injector: injectorExpression;
   content: contentNodesExpression;"&gt;
&lt;/ng-container&gt;

Here is a simple example of the complete syntax:

// ...
@Component({
 selector: 'ng-component-outlet-complete-example',
 template: `
  <ng-container *ngComponentOutlet="CompleteComponent; 
                   injector: myInjector; 
                   content: myContent"></ng-container>`
})
class NgTemplateOutletCompleteExample {
 // This field is necessary to expose CompleteComponent to the template.
 CompleteComponent = CompleteComponent;
 myInjector: Injector;

 myContent = [[('Ahoj')], [('Svet')]];

 constructor(injector: Injector) {
   = ([Greeter], injector);
 }
}

4. Create structure instructions

I can't think of any good example, so I'll copy it to you:

// 

import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';
 @Directive({
   selector: '[exeUnless]'
 })
 export class UnlessDirective {
   @Input('exeUnless')
   set condition(newCondition: boolean) { // set condition
     if (!newCondition) {
       ();
     } else {
       ();
     } 
   }
   constructor(private templateRef: TemplateRef<any>,
     private viewContainer: ViewContainerRef) {
   } 
 }


 import { Component } from '@angular/core';
 @Component({
  selector: 'app-root',
  template: `
   <h2 *exeUnless="condition">Hello, Semlinker!</h2>
  `,
 })
 export class AppComponent {
  condition: boolean = false;
 }


 // 

 import { Component } from '@angular/core';
 @Component({
  selector: 'app-root',
  template: `
   <h2 *exeUnless="condition">Hello, Semlinker!</h2>
  `,
 })
 export class AppComponent {
  condition: boolean = false;
 }

The above is all the content of this article. I hope it will be helpful to everyone's study and I hope everyone will support me more.