gpt4 book ai didi

javascript - AngularJS 应用程序 : make pagination take into account the standard filter

转载 作者:行者123 更新时间:2023-11-28 02:30:14 25 4
gpt4 key购买 nike

我正在开发一个在 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 属性。但我不知道怎么办。

我错过了什么?

最佳答案

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

关于javascript - AngularJS 应用程序 : make pagination take into account the standard filter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51148952/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com