【发布时间】:2020-11-29 18:00:52
【问题描述】:
我需要检查我的数组中的第一个值,该值是通过 api 从 get 请求中获得的 以下是我的html
<div class="row" class="select-options" *ngFor="let options of paymentOptions;let idx = index">
<input type="radio"
formControlName="paymentOption"
[value]="options"
[checked]="idx==0"
(change)="onSelectChange(options)"/>
{{options}}
</div>
请帮忙。
【问题讨论】:
-
嗨,初始化或设置为formControl“paymentOption”,其值为数组中的第一个值。并删除模板中的属性[checked]。
标签: html angular typescript radio-button angular9