Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to use Filter in Angular JS

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 931
    Comment on it

    A filter is used to format the value of some expression when it is displayed to the user. It can be think as selecting the elements from an array in a particular format and returns a new array.

    It can be used by the following ways:

    In HTML Template Binding

    1. {{ filterExpression | filter : expression : comparator}}

    In JavaScript

    1. $filter('filter')(array, expression, comparator)

    Array : It is the array of source.

    Expression: Can be one of:

    String:All strings in the source array that match with this string will be returned.

    Object:An object can be used to filter specific properties on objects of the source array.
    For example {name:"S", phone:"2"} will return an array of items which have property name "S" and property phone containing "2".

    function(value, index):The function is called for each element of array. The final result is an array of those elements that is returned.

    Comparator: It is used to determine if the expected value (from the filter expression) and actual value (from the object in the array) is matching or not.

    It can be one of:

    function(actual, expected):It will give the two values that is object value and the predicate value to compare and return true if both values are equal.

    Example:

    HTML:

    1. <body ng-app="FilterApp">
    2. <div ng-controller="FilterCtrl">
    3. <form class="form-filter">
    4. <input ng-model="query-filter" type="text"
    5. placeholder="Filter by">
    6. </form>
    7. <ul ng-repeat="user in users | filter:query-filter | orderBy: 'name' ">
    8. <li>{{user.name}}</li>
    9. </ul>
    10. </div>
    11. </body>

    JavaScript:

    1. var app = angular.module("FilterApp", []);
    2.  
    3. app.controller("FilterCtrl", function($scope) {
    4. $scope.users = [
    5. { name: "Chris", age: 22 },
    6. { name: "Harry", age: 52 },
    7. { name: "Martin", age: 21 },
    8. { name: "Olex", age: 34 },
    9. { name: "Luther", age: 26},
    10. { name: "Emmey", age: 33 }
    11. ];
    12.  
    13. $scope.filterFunction = function(element) {
    14. return element.name.match(/^Ma/) ? true : false;
    15. };
    16.  
    17. });

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: