AngularJS – 选择由ng-repeat生成的单选按钮时不会更新的模型

前端之家收集整理的这篇文章主要介绍了AngularJS – 选择由ng-repeat生成的单选按钮时不会更新的模型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用ng-repeat生成一堆单选按钮,然后在选择其中一个时尝试更新模型。这似乎不工作。

相同的代码标记工作正常,当无线电输入硬编码,而不是由ng-repeat生成

这工作:

<input type="radio" ng-model="lunch" value="chicken" name="lunch">
<input type="radio" ng-model="lunch" value="beef" name="lunch">
<input type="radio" ng-model="lunch" value="fish" name="lunch">  
{{lunch}}

这不:

<input type="radio" ng-model="lunch" ng-repeat="m in meat" value="m" name="lunch">    
{{lunch}}

看到j​​sfiddle在这里显示http://jsfiddle.net/mark_up/A2qCS/1/

任何帮助将不胜感激。

谢谢

<div ng-controller="DynamicCtrl">
    <input type="radio" ng-model="$parent.lunch" ng-repeat="m in meat"  
    ng-value="m" name="lunch">    
    {{lunch}}
</div>

应该做的伎俩。

根据我的理解,ng-repeat创建自己的$范围。所以你需要引用$ parent $ scope;是的,AngularJS是棘手的。还需要将值更改为ng-value。

原文链接:https://www.f2er.com/angularjs/146234.html

猜你在找的Angularjs相关文章