Angular2,在我的ts中,我有一个控制组,如何使用ngFormControl对我的html中的select进行双向绑定?
form.component.ts
this._reportGeneratingForm = fb.group({
......
selectedGroup: ['']
})
form.component.html
<select class="form-control" ????>
<option>Day</option>
<option>Hour</option>
<option>week</option>
<option>Month</option>
</select>
答案 0 :(得分:3)
<select class="form-control" [(ngModel)]="someProperty">
<option>Day</option>
<option>Hour</option>
<option>week</option>
<option>Month</option>
</select>
其中someProperty
是包含值或
<select class="form-control" [ngFormControl]="selectControl">
<option>Day</option>
<option>Hour</option>
<option>week</option>
<option>Month</option>
</select>
如果你有最近的Angular2版本(&gt; = beta.16),这只适用于所有浏览器
答案 1 :(得分:0)
在此示例中,所选属性不起作用! 但是在ts文件中
someProperty = Day
selectControl.value= Day
它会正常工作。