Як оголосити динамічну посилальну змінну шаблону всередині ngFor
елемента?
Я хочу використовувати компонент popover з ng-bootstrap, код popover (з прив'язкою Html) такий:
<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>
Як я можу загорнути ці елементи всередину ngFor
?
<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>
Мда ... будь-яка ідея?