在构建过程中没有问题(没有警告/错误),在chrome控制台中,我可以看到以下错误:
错误:ngIfElse必须是TemplateRef,但是收到了'[object HTMLDivElement]”。
我试图用ng-content替换first div,但是出现了同样的错误。 HTML代码:
<div class="set-desk-form" *ngIf="!operatorSet; else showLogout">
<mat-form-field class="full-width">
<input matInput placeholder="Worker barcode..." value="">
</mat-form-field>
<button mat-raised-button color="primary" (click)="operatorSet = 'true';">Mentés</button>
</div>
<ng-template #showLogout>
</ng-template>