我正在使用 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}}
请参阅此处显示的 jsfiddle:http: //jsfiddle.net/mark_up/A2qCS/1/
任何帮助,将不胜感激。
谢谢