我有以下7号角度的选择标签代码
<select class="form-control fixed-select" name="country" #country=ngModel
[(ngModel)]="employeeObject.address.country.id" (change)="onCountrySelect($event.target.value, false)"
required>
<option value="" selected disabled>Select country</option>
<option *ngFor="let country of countries" value={{country.id}}>{{country.countryCode}}</option>
</select>
即使我使用了SELECTED属性,默认选择也不起作用。 该如何解决?
答案 0 :(得分:0)
您的变量country
必须具有空字符串作为值,才能与您的选项匹配。