Filters are used for formatting data displayed to the user.
They can be used in view templates, controllers or services.Angular comes with a collection of built-in filters, but it is easy to define your own as well.
The general syntax in templates is as follows:
{{ expression [| filter_name[:parameter_value] ... ] }}
$filter(name);
Param | Type | Details |
---|---|---|
name | String | Name of the filter function to retrieve |
Function |
the filter function |
© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.5.11/docs/api/ng/service/$filter