我想将角度 2 中的选择的默认选项设置为“选择一个选项”。这是我到目前为止的代码:
HTML
<div class="form-group">
<label class="col-md-4 control-label" for="CustomFix">Select an option:</label>
<div class="col-md-4">
<select id="example" name="example" class="form-control" [(ngModel)]="exampleArray" (ngModelChange)="changes()">
<option disabled selected>Select a Custom Fix</option>
<option *ngFor="let example of exampleArray" [ngValue]="example">{{example.attribute }}</option>
</select>
</div>
</div>
打字稿
changes(){
console.log(this.example.option);
}
我的 html 中有一行:
<option disabled selected>Select a Custom Fix</option>
如何将其作为默认选项启用?它与我与 ngModel 一起使用的数组是分开的