gpt4 book ai didi

forms - Angular2 - 单选按钮绑定(bind)

转载 作者:太空狗 更新时间:2023-10-29 16:45:03 28 4
gpt4 key购买 nike

我想在使用 Angular 2 的表单中使用单选按钮

Options : <br/>

1 : <input name="options" ng-control="options" type="radio" value="1" [(ng-model)]="model.options" ><br/>

2 : <input name="options" ng-control="options" type="radio" value="2" [(ng-model)]="model.options" ><br/>

model.options初始值为1

当页面加载时,第一个单选按钮未被选中并且修改未绑定(bind)到模型

有什么想法吗?

最佳答案

使用 [value]="1" 而不是 value="1"

<input name="options" ng-control="options" type="radio" [value]="1"  [(ngModel)]="model.options" ><br/>

<input name="options" ng-control="options" type="radio" [value]="2" [(ngModel)]="model.options" ><br/>

编辑:

正如 thllbrg 所建议的“对于 angular 2.1+ 使用 [(ngModel)] 而不是 [(ng-model)]

关于forms - Angular2 - 单选按钮绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31879497/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com