将ng-model绑定到ng-options选择

时间:2016-08-25 20:22:06

标签: angularjs html-select angular-ngmodel ng-options

我很难将选项绑定到使用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>

在这里插入:http://plnkr.co/edit/lhRl1GMxnNeD8qUO0HNm

1 个答案:

答案 0 :(得分:1)

您的ngModelvaluengOptions定义的属性相同 - 这很糟糕。让你的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'">