如何使用AngularJS和dir-pagination进行类别过滤

时间:2015-06-24 15:29:53

标签: angularjs pagination dirpagination

我正在使用dir-pagination进行过滤和分页。我想用href过滤。 分页和过滤(搜索文本框)正在运行。但我想链接多种过滤类型。链接,文本框,组合框等。

在主要的菜单中:

    $scope.currentPage = 1;
    $scope.pageSize = 10;
    $http.get('admin/api/?s=getProducts&lang='+lang).success(
    function(r){
    $scope.products = r;
        }
    );


function productFilter($scope) {
$scope.pageChangeHandler = function(num) {
console.log('going to page ' + num);
};
}

在Html页面中:

        <div class="widget">
            <h4>CATEGORIES</h4>
            <div id="price-range">
                <div class="padding-range"><div id="slider-range"></div></div>
                <input type="text" style="background-color: #fff;border: 1px solid #D39797;  width: 140px; height: 22px;" ng-model="searchProduct">
                <a href="#" class="button light"   style="margin:0;">Search</a>
            </div>
            <div class="clearfix"></div>
        </div>


        <!-- Categories -->
        <nav class="widget" >
            <h4>Product Categories</h4>
            <ul class="categories" ng-repeat="category in categories">
                <li><a href="#"  ng-model="searchCategory = category.category" >{{category.category}}</a></li>
            </ul>
        </nav>

1 个答案:

答案 0 :(得分:0)

我添加了隐藏的输入文本,并通过ng-click事件更改了值。输入将过滤dir-paginate。

$scope.getProducCategory = function() {
     return $scope;   
    }

将getProductCategory()函数添加到mainCtrl

{{1}}