How to filter a specific item from an array in angularJS?

598 Views Asked by At

here is my controller :

   varDemoApp.controller('SimpleController',function($scope){
        $scope.customers = [{name:'Ahsan',city:'Khulna'},
            {name:'Rokib',city:'Bogra'},
            {name:'Asad',city:'Satkhira'}];

    });

And my html code is :

<div data-ng-controller="SimpleController">
    Name:
    <br/>
    <input type="text" data-ng-model="name"/>
    <ul>
        <li data-ng-repeat="cust in customers|filter:name|orderBy:'name'">
            {{cust.city}}-{{cust.name}}
        </li>
    </ul>
</div>

I want to filtered only by 'customers.name' but now it filter by overall customers array.

1

There are 1 best solutions below

1
On BEST ANSWER

Yes, you can pass an object into filter expression:

filter:{name:name}