ngFor内の動的テンプレート参照変数(Angular 9)
要素内で動的 テンプレート参照変数を宣言するにはどうすればよい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 …