filter list of items when clicking category link

前端 未结 2 1594
甜味超标
甜味超标 2020-12-13 07:30

I have a list of items with \"ng-repeat\". Each item contains a div with a link title and link category. When clicking on a category, I want to filter the list of items, so

2条回答
  •  北荒
    北荒 (楼主)
    2020-12-13 07:56

    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:

    
    

    Here's a quick fiddle of this in action.

提交回复
热议问题