我是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'}
];
}
我在这里做错了什么?无法弄清楚!!!
答案 0 :(得分:109)
因为ng-repeat
创建了自己的范围,而您尝试执行的操作是将值从子范围分配给父范围。所以你可以做到
<input type="radio" ng-model="$parent.contactname" name="group1" value="{{contact.name}}">
答案 1 :(得分:5)
所以我遇到了同样的问题,使用带有ng-model的$ parent似乎并没有起作用。我的问题是我有一组复选框,但每个复选框使用相同的名称属性。它最终隐藏了最后一组中的默认选中单选按钮。
确保为每个不同的组使用不同的名称属性。
答案 2 :(得分:1)
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.devices = [{
nameD: "Device 1"
}, {
nameD: "Device 2"
}, {
nameD: "Device 3"
}, {
nameD: "Device 4"
}];
});
&#13;
<!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>
&#13;
答案 3 :(得分:1)
如果您多次使用该指令,并且您正在使用for
和id
标签...请务必使用范围$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>
否则,您将获得共享相同输入的指令,并使其看起来好像不起作用。