0
ng-template
で定義されたhtmlのブロックを直接参照する方法は?ng-templateで定義されたhtmlのブロックを角度で直接参照する方法は?
filterOfDiv
を参照するには、*ngIf
ディレクティブを使用し、常に条件をtrue
に設定する必要があります。
<ng-container *ngIf='true; then filterOfDiv'></ng-container>
<ng-template #filterOfDiv>
<div class="flex-column row-space filter-container">
<div>
<input type="checkbox" id="company1"><label for="company1" class="label-input">company1</label>
</div>
<div>
<input type="checkbox" id="company2"><label for="company2" class="label-input">company2</label>
</div>
</div>
</ng-template>
のように、直接filterOfDiv
を参照する方法があります:
<ng-container filterOfDiv></ng-container>