无法在AngularJS中动态获取单选选择设置的值

要获得单选的值,请向每个ng模型添加[$index],如下所示:

<td><input type = "radio" ng-model = "classes.satisfies[$index]" value = "Country1"> India</td>
<td><input type = "radio" ng-model = "classes.satisfies[$index]" value = "Country 2"> US</td>

以上将在AngularJS中为您动态提供结果。