You can create an object on your controller's scope intended for filtering and pass it to the filter
expression in ng-repeat
var app = angular.module('app', []);
app.controller('main', function($scope) {
$scope.filters = { };
$scope.links = [
{name: 'Apple', category: 'Fruit'},
{name: 'Pear', category: 'Fruit'},
{name: 'Almond', category: 'Nut'},
{name: 'Mango', category: 'Fruit'},
{name: 'Cashew', category: 'Nut'}
];
});
So now we have a filters
object attached to the scope. If it gets a key of category
, the filter
expression will automatically filter the objects according to whether or not they have a key of category
and it matches.
For more details, look at the "Parameters" section of the filter docs.
So your HTML could look like:
<div class="link_line" ng-repeat="link in links | filter:filters">
<div class="title"><a href="{{link.url}}" target="_blank">{{link.title}}</a></div>
<div class="category_label" ng-click="filters.category = link.category">{{ link.category }}</div>
</div>
Here's a quick fiddle of this in action.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…