在我的angular2应用中,我有一个表,该表显示SELECT下拉列表。在下拉菜单中,我需要显示默认选择值。 但是,TR是根据条件显示的。我正在使用ngIf。 当显示TR时没有ng如果我看到我的下拉菜单默认选择。但不能使用ngIf。仅在选择表单中的另一个值后,才会显示此TR。
<table>
<tr *ngIf="key !== '00'">
<td>
<label >Labels</label>
</td>
<td>
<select id="dropdown" formControlName="temp" class="form-control"
name="temp" [ngModel]="defaultTemp">
<option *ngFor="let code of Codes" [ngValue]="code" required> {{code.value}} </option>
</select>
</td>
</table>