How to use filter with more than one parameter in angular?
Answers
Answered by
0
In the previous article I used the following HTML markup with AngularJS to loop through an array of users to display their Name and Location:
<div ng-app="myApp" ng-controller="myController">
<ul>
<li ng-repeat="user in users">{{user.Name}} | {{user.Location}}</li>
</ul>
</div>
<div ng-app="myApp" ng-controller="myController">
<ul>
<li ng-repeat="user in users">{{user.Name}} | {{user.Location}}</li>
</ul>
</div>
Similar questions