Bir eleman içinde dinamik bir şablon referans değişkeni nasıl bildirilir ngFor
?
Popover bileşenini ng-bootstrap'tan kullanmak istiyorum, açılır pencere kodu (Html bağlamayla) gösterildiği gibidir:
<ng-template #popContent>Hello, <b>{{name}}</b>!</ng-template>
<button type="button" class="btn btn-secondary" [ngbPopover]="popContent" popoverTitle="Fancy content">
I've got markup and bindings in my popover!
</button>
Bu öğeleri içine nasıl sarabilirimngFor
?
<div *ngFor="let member of members">
<!-- how to declare the '????' -->
<ng-template #????>Hello, <b>{{member.name}}</b>!</ng-template>
<button type="button" class="btn btn-secondary" [ngbPopover]="????" popoverTitle="Fancy content">
I've got markup and bindings in my popover!
</button>
</div>
Hmmm ... herhangi bir fikrin var mı?