-1
我對非基於規則的值有「n」,對於基於規則的我有「R」。 根據這個值,我需要動態地在UI中選擇單選按鈕值。ngModel綁定到angular2中的單選按鈕
在ts。
this.vGroup = this.arr.vzGroup; // the value of vGroup is either "R" or "N"
我需要在選項「規則」和「非規則」選項中選擇創建一個單選按鈕。 有人可以幫助這裏。
這是我試過
<input type="radio" name="optradio" [checked]=" *ngIf="vzGroup=='R'" ? 'true' : 'false' ">
<input type="radio" name="optradio" [checked]=" *ngIf="vzGroup=='N'" ? 'true' : 'false' ">
幫助快到了,在路上... –
那麼你嘗試過什麼,告訴我們你的模板,你正在試圖做到這一點... – Alex
這樣的事情,截至目前,我打印的價值在一個文本,但單選按鈕選項,我試過這樣.. \t – WebDev