Selects a subset of items from array
and returns it as a new array.
Note: this function is used to augment the Array type in angular expressions. See
angular.Array
for more info.
angular.Array.filter(array, expression);
array – {Array} –
The source array.expression – {string|Object|function()} –
The predicate to be used for selecting items from
array
.
Can be one of:
string
: Predicate that results in a substring match using the value of expression
string. All strings or objects with string properties in array
that contain this string
will be returned. The predicate can be negated by prefixing the string with !
.
Object
: A pattern object can be used to filter specific properties on objects contained
by array
. For example {name:"M", phone:"1"}
predicate will return an array of items
which have property name
containing "M" and property phone
containing "1". A special
property name $
can be used (as in {$:"text"}
) to accept a match against any
property of the object. That's equivalent to the simple substring match with a string
as described above.
function
: A predicate function can be used to write arbitrary filters. The function is
called for each element of array
. The final result is an array of those elements that
the predicate returned true for.