按文本过滤DropDown不起作用

时间:2017-05-30 10:48:58

标签: html angularjs

我使用ng-repeat绑定下拉值。在db中我存储了下拉列表的值。在显示时我正在显示文字。我想使用文本

过滤下拉列表
<select id="UOMid" class="form-control" typeof="text" ng-model="UOMSelect" required name="UOMType" form="Floorform" ng-change="verifySKUDuplicate()">
    <option value="">Select</option>
    <option ng-repeat="UOMTypeInformation in UOMTypeInformations | filter: UOMType " value="{{UOMTypeInformation.UOMTypeId}}">{{UOMTypeInformation.UOMType}}</option>
</select>

我尝试使用名称过滤下拉数据。但它不起作用

<option ng-repeat="UOMTypeInformation in UOMTypeInformations | filter: UOMType " value="{{UOMTypeInformation.UOMTypeId}}">{{UOMTypeInformation.UOMType}}</option>`     `                                                                  

0 个答案:

没有答案