Is it possible to filter angular.js by containment in another array?

前端 未结 3 1797
孤街浪徒
孤街浪徒 2020-11-30 03:24

So if I have an array:

$scope.letters = 
[{\"id\":\"a\"},
{\"id\":\"b\"},
{\"id\":\"c\"}];

And another array

$scope.filter         


        
3条回答
  •  攒了一身酷
    2020-11-30 04:02

    Update

    Here's an angular module (based on @InviS answer) to easily implement this filter inside your angular application: filters-inArrayFilter


    Here's the angular filters approach based on @InviS answer:

    The filter should be like this:

    .filter('inArray', function($filter){
        return function(list, arrayFilter, element){
            if(arrayFilter){
                return $filter("filter")(list, function(listItem){
                    return arrayFilter.indexOf(listItem[element]) != -1;
                });
            }
        };
    });
    

    where list is the list you're filtering (this param is set by default by angular), arrayFilter is the array you're using as filter, and element is the name of the property to filter in your list.

    To use this filter you use your ng-repeat as:

    {{letter.id}}

    where inArray is the filter, filterBy (the first argument of this filter) is your array to match against, and "id" (second argument) is the element of the list you want to match against the array.

    You can try this live example using the angular filters approach.

提交回复
热议问题