Làm thế nào để khai báo một biến tham chiếu mẫu động bên trong một phần tử?ngFor
Tôi muốn sử dụng thành phần cửa sổ bật lên từ ng-bootstrap, mã cửa sổ bật lên (có ràng buộc Html) như được hiển thị:
<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>
Làm thế nào tôi có thể bọc các yếu tố đó bên trong 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>
Hmmm ... có ý kiến gì không?