요소 내에서 동적 템플릿 참조 변수 를 선언하는 방법은 ngFor
무엇입니까?
ng-bootstrap의 팝 오버 구성 요소를 사용하고 싶습니다. 팝 오버 코드 (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>
흠 ... 어떤 생각?