Angularjs使用独特的ng-model输入[radio]而不是未设置

时间:2015-08-18 23:00:40

标签: javascript angularjs input radio-button

简单的问题,当使用一组单选按钮时,每个按钮使用唯一的ng-model,当未选中时,模型的值不会从{{更改1}}到true

在此示例中,未选中时,每个模型仍保留' true':

false

一如既往,感谢您的指导。

1 个答案:

答案 0 :(得分:-1)

你的表格应该是这样的

<form>
    <label for='qpInputdata'>No Selection</label>
    <input id="qpInputdata" class="form-control
       name="xCaasType" ng-model="fData.selection" type="radio"
       ng-value="true" value="no">
    <label for='qpInputdata'>Select This One</label>
    <input id="qpInputdata" class="form-control
        name="xCaasType" ng-model="fData.selection" type="radio"
        ng-value="true" value="selected">
</form>

现在模型 fData.selection 将包含这两个值中的一个&#34; no&#34;,&#34; selected&#34;根据所选选项