我很难将选项绑定到使用ng-options构建的选择框中的ng-model。最后,我想要包含一些选择框作为级联过滤器,从数组
动态构建这就是我所拥有的 - 问题是'loc'没有从选择框中获取所选选项。
<th class="col-sm-1">Location
<select class="form-control input-sm" name="aws_child_loc_stat" ng-model="loc" ng-options="loc as aws.child_loc_stat for aws in aws | unique: 'child_loc_stat'">
</select></th>
答案 0 :(得分:1)
您的ngModel
与value
中ngOptions
定义的属性相同 - 这很糟糕。让你的ngModel
变得与众不同:
<select class="form-control input-sm" name="aws_child_loc_stat" ng-model="selectedLoc" ng-options="loc as aws.child_loc_stat for aws in aws | unique: 'child_loc_stat'">