“ngTemplateOutlet” Kod odpowiedzi

ngTemplateOutlet

<!-- Alternative syntax -->
<ng-container
  *ngTemplateOutlet="optionTemplate; context:{ $implicit: option, idx: i }"
></ng-container>
><Copy
Scary Salamander

ngTemplateOutlet

<ng-template #optionTemplate let-option let-position="idx">
  {{ position }} : {{option}}
</ng-template>

<!-- client-one.component.html --><>Copy
Scary Salamander

ngTemplateOutlet

<li *ngFor="let item of items; index as i">
  <!-- Setting the option as the $implicit property of our context along with the row index -->
  <ng-container
    [ngTemplateOutlet]="optionTemplate"
    [ngTemplateOutletContext]="{ $implicit: option, idx: i }"
  ></ng-container>
</li>

<!-- selector.component.html --><>Copy
Scary Salamander

Odpowiedzi podobne do “ngTemplateOutlet”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu