कैसे एक तत्व के अंदर एक गतिशील टेम्पलेट संदर्भ चर घोषित करने के लिए ngFor
?
मैं एनजी-बूटस्ट्रैप से पॉपओवर घटक का उपयोग करना चाहता हूं, पॉपओवर कोड (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>
हम्मम ... कोई आइडिया?