2
我嘗試在我的項目中創建一個動態表單,並且我有一些單選按鈕。我想默認檢查其中的一個。我嘗試這樣做:Ionic 2:表單中的單選按鈕,默認選中
<input *ngIf="fieldForm.value.type == 'date'" type="date" formControlName="field">
<div *ngIf="fieldForm.value.type == 'radio'">
<div *ngFor="let option of fieldForm.value.options.values" >
<label><input type="radio" formControlName="field" value="{{option}}">{{option}}</label>
</div>
<div>
<label><input type="radio" formControlName="field" value="Toto" checked="checked">Toto</label>
</div>
</div>
但它不工作。我不明白我必須做什麼。有人有一個想法?
你可以試試'checked =「true」'。 –