1

这是html中选择字段的代码:

<ui-select ng-model="group.selected" theme="selectize" ng-click="searchDisabled(3)" ng-disabled="disabledGroup">
   <ui-select-match placeholder="Choose a group">
       {{$select.selected.name}}
   </ui-select-match>
   <ui-select-choices repeat="group in groups | filter: $select.search">
      <span ng-bind-html="group.name | highlight: $select.search"></span>
      <small ng-bind-html="group.code | highlight: $select.search"></small>
   </ui-select-choices>
</ui-select>

然后是过滤表格列表的重要字段:

<tr ng-repeat="item in filteredNames = (nameslist | filter:search | selectGroup:group.selected)">
   <td>{{ item.lname }}</td>
   <td>{{ item.fname }}</td>
   <td>{{ item.maxAge }}</td>
</tr>

我在自定义过滤器 selectGroup 中使用来自 ui-select-tag 的 ngModel 值作为过滤器的参数。

名称列表值来自数据库。这里是 QR_Group DB-Table 的 GET 请求的 JSON 结果:

{
  "QR_Name":[
    { "Id":31, "lname":"Bricks", "fname":"Johnny", "maxAge":24, "QR_GroupId":6 },
    { "Id":4, "lname":"Schon", "fname":"Toni", "maxAge":54, "QR_GroupId":6 },
    { "Id":56, "lname":"Houston", "fname":"Monica", "maxAge":29, "QR_GroupId":6 },
   ],
  "Id":6,
  "name":"South America",
  "code":"SA"
}

我从 WebAPI 方法 GetGroup 获得的这种 JSON 格式。如何使用自定义过滤器在表格列表中显示 QR_Name 数组?

这是我的第一个想法:

testApp.filter('selectGroup', ['$log', function ($log) {
    return function (nameslist, group) {
        group = group || '';
        $log.info('fondslist:', fondslist);
        $log.info('Filter for group:', group);
        var selectList = [];

        angular.forEach(fondslist, function (input) {
            if (group == input.QR_Name['QR_GroupId']) {
                selectList.push(input);
            }
        });
    }
}]);

但是过滤器不能正常工作。

4

1 回答 1

0

angular ui-select 在 0.12 中使用 group-filter 属性添加了对自定义过滤器的支持 - https://github.com/angular-ui/ui-select/pull/836

于 2016-01-31T16:51:52.460 回答