AngularJS应用:使分页考虑标准过滤器

时间:2018-07-03 07:34:44

标签: javascript html angularjs twitter-bootstrap

我正在研究一个小型应用程序,该应用程序在HTML5表中显示“用户” JSON。它使用Bootstrap 3和AngularJS。

该应用程序具有多种功能:

  1. 结果过滤
  2. 结果排序
  3. 分页

AngularJS对我来说是很新的。我在分页上做了很多工作,但是我无法使它在过滤结果上起作用。

var root = 'https://jsonplaceholder.typicode.com';

// Create an Angular module named "usersApp"
var app = angular.module("usersApp", []);

// Create controller for the "usersApp" module
app.controller("usersCtrl", ["$scope", "$http", function($scope, $http) {
  var url = root + "/users"
  $http.get(url)
    .then(function(data) {
      // Users arary
      $scope.users = data.data;

      // Order by function
      $scope.orderByMe = function(criteria) {
        $scope.myOrderBy = criteria;
      }

      // Paginate
      $scope.pageNum = 1;
      $scope.perPage = 3;
      $scope.startAt = 0;
      $scope.itemsCount = $scope.users.length;
      $scope.pageMax = Math.ceil($scope.itemsCount / $scope.perPage);
      
      $scope.prevPage = function() {
        if ($scope.pageNum > 1) {
          $scope.pageNum = $scope.pageNum - 1;
          $scope.startAt = ($scope.pageNum - 1) * $scope.perPage;
        }
      };

      $scope.nextPage = function() {
        if ($scope.pageNum < $scope.pageMax) {
          $scope.pageNum = $scope.pageNum + 1;
          $scope.startAt = ($scope.pageNum - 1) * $scope.perPage;
        }
      };
    });
}]);
body {
  padding-top: 70px;
}
.container {
  padding: 0 10px;
}
.search-box {
  margin: 5px !important;
}
.panel-heading {
  font-weight: bold;
}
.table-container {
  margin: 10px 0;
}
.table-container .panel-body {
  padding: 0;
}
.table-container table {
  margin-bottom: 0;
  border-width: 0;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.table-container table tr:last-child td {
  border-bottom: none;
}
.table-container table tr th {
  font-weight: bold;
  cursor: pointer;
}
.table-container table tr th:first-child {
  border-left: none;
}
.table-container table tr td:first-child {
  border-left: none;
}
.table-container table tr th:last-child, .table-container table tr td:last-child {
  border-right: none;
}
.table-container .pagination-info {
  margin: 10px 0;
}
.pager {
  margin: 10px 0;
}

/* Media queries */
@media (min-width: 768px) {
  .container {
    width: auto;
  }
}
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<nav class="navbar navbar-default navbar-fixed-top">
  <div class="container-fluid">
    <div class="navbar-header">
      <a class="navbar-brand" href="#">My App</a>
    </div>
    <ul class="nav navbar-nav navbar-right">
      <li><a href="#">Home</a></li>
      <li class="active"><a href="#">Users</a></li>
      <li><a href="#">Posts</a></li>
    </ul>
  </div>
</nav>
<div class="container" data-ng-app="usersApp">
<div class="panel panel-default table-container">
  <div class="panel-heading">Users</div>
  <div class="panel-body" data-ng-controller="usersCtrl">
    <div class="row">
      <div class="col-sm-12">
        <div class="form-group search-box">
          <input type="text" class="form-control" id="search" placeholder="Search User" data-ng-model="search">
        </div>
      </div>
      <div class="col-sm-12">
        <div class="table-responsive">
          <table class="table table-striped table-bordered" id="dataTable">
            <thead>
              <tr>
                <th>#</th>
                <th ng-click="orderByMe('name')">Full name</th>
                <th ng-click="orderByMe('email')">Email</th>
                <th ng-click="orderByMe('city')">City</th>
                <th>Street</th>
                <th>Suite</th>
                <th>Zipcode</th>
              </tr>
            </thead>
            <tbody>
              <tr data-ng-repeat="user in users|filter:search|orderBy:myOrderBy| limitTo : perPage : startAt">
                <td>{{$index + startAt + 1}}</td>
                <td>{{user.name}}</td>
                <td><a href="mailto:{{user.email  | lowercase}}">{{user.email  | lowercase}}</a></td>
                <td>{{user.address.city}}</td>
                <td>{{user.address.street}}</td>
                <td>{{user.address.suite}}</td>
                <td>{{user.address.zipcode}}</td>
              </tr>
            </tbody>
          </table>
        </div>
        <p class="pagination-info text-center">Page {{pageNum}} of {{pageMax}}</p>
        <div class="text-center" ng-if="pageMax > 1">
          <ul class="pager">
            <li><a href="#" ng-click="prevPage()">&larr; Previous</a></li>
            <li><a href="#" ng-click="nextPage()">Next &rarr;</a></li>
          </ul>
        </div>
      </div>
    </div>
  </div>
</div>

在分页中使用itemsCount之前,我应该能够使AngularJS过滤器修改 $ scope 对象的itemsCount属性。但是我不知道如何。

我想念什么?

1 个答案:

答案 0 :(得分:0)

这里是一个工作正常的人:https://plnkr.co/edit/NlpmSZoEVMbbHNPo7n9E?p=preview。 我在搜索输入中添加了ng-change指令,只要搜索输入发生更改,该指令就会调用filterList函数。这将过滤列表并重新计算itemsCountpageMax。希望这会有所帮助。

相关问题