65

我是 Angular 的新手,我正在尝试获取用户使用 ng-model 选择的单选按钮的值。但是我在“选定的联系人”中没有得到任何输出。

这是我的 HTML

<!doctype html>
<html ng-app>
  <head>
    <script src="http://code.angularjs.org/1.2.0rc1/angular.min.js"></script>
    <script src="script.js"></script>
  </head>
  <body>
    <form name="myForm" ng-controller="Ctrl">
      <table border="0">
                <th>Contact Type</th>
                <tr ng-repeat="contact in contacttype"><td>
                <input type="radio" ng-model="contactname" name="group1" value="{{contact.name}}">{{contact.name}}                  
                </td>               
            </td></tr></table>
      <tt>selected contact = {{contactname}}</tt><br/>
     </form>
  </body>
</html>

下面是我的 main.js

  function Ctrl($scope) {
  $scope.contacttype = [ 
                          {name: 'Both' }, 
                          {name: 'User'},
                          {name: 'Admin'}
                          ];
}

我在这里做错了什么?想不通!!!

4

4 回答 4

110

因为ng-repeat创建了自己的范围,而您要做的是将值从子范围分配给父范围。所以你可以做

<input type="radio" ng-model="$parent.contactname" name="group1" value="{{contact.name}}">
于 2013-09-03T14:08:00.247 回答
5

所以我遇到了同样的问题,并且将 $parent 与 ng-model 一起使用似乎不起作用。我的问题是我有一组复选框,但每个复选框都使用相同的名称属性。它最终隐藏了最后一组中的默认选中单选按钮。

确保为每个不同的组使用不同的名称属性。

于 2014-09-22T22:58:28.140 回答
2

var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {	
	
	$scope.devices = [{
		nameD: "Device 1"
		}, {
		nameD: "Device 2"
		}, {
		nameD: "Device 3"
		}, {
		nameD: "Device 4"
	}];
	
});
<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="app-controller-r.js"></script>
<body>
<div ng-app="myApp" ng-controller="formCtrl">
<form>
<ul>
    <li ng-repeat="device in devices">  
	<label>{{device.nameD}}	
        <input type="radio" ng-model="$parent.deviceType" value="{{device.nameD}}" />       
	</label>
    </li>
</ul>
<button>Submit</button>
</form>
{{deviceType}}
 </div>
</body>
</html>

于 2016-05-17T03:15:53.303 回答
1

如果您多次使用该指令并且您使用forandid和标签...确保使用对范围的引用$id

<li ng-repeat='add_type in types'>
    <input id="addtester_{{ add_type.k }}_{{ $parent.$id }}" type="radio" ng-model="$parent.addType" ng-value='add_type.k' class="tb-form__input--custom" /
    <label for="addtester_{{ add_type.k }}_{{ $parent.$id }}">{{ add_type.v }}</label>
</li>

否则,您将成为共享相同输入的指令,并使其看起来好像不起作用。

于 2016-08-05T18:37:04.097 回答