<li ng-repeat="flagVm in flagVms track by $id(flagVm)">
<label for="alternative{{$index}}" ng-click="alternativeClicked()">
<input ng-model="$parent.alternative" value="{{ flagVm.id }}" type="radio" name="alternative{{$index}}" />
<span class="num-times-flagged">(Flagged {{ flagVm.count }} {{ flagVm.count > 1 ? 'times' : 'time' }}) </span>
Inference Id:
<span class="highlighted-id">{{ flagVm.duplicateId }}</span>
</label>
</li>
和
$scope.alternativeClicked = function (id)
{
//once iterating will probably be the actual flag obj
$scope.alternativeFound = 'yes';
};
答案 0 :(得分:1)
我认为在收音机中使用ng-click
是一种不好的做法。
更好的方法是使用ng-change
或$watch
值更改