У меня есть простой код, который заставляет сотрудников с контроллера, и я хочу отфильтровать эти записи с разбиением на страницы. Когда я фильтрую любую страницу, все работает нормально, но когда я хочу фильтровать с другой страницы, она не фильтрует и ничего не показывает.angularjs не фильтрует другие страницы
Мой код выглядит следующим образом:
-filter.js
angular.module('MyApp', ['ui.bootstrap']).controller('MyController', function ($scope, EmployeesService) {
$scope.Employees = null;
$scope.currentPage = 1;
$scope.pageSize = 2;
$scope.maxSize = 100;
EmployeesService.GetEmployees().then(function (d) {
$scope.Employees = d.data; // Success
}, function() {
alert('Failed'); // Failed
})
})
.service('EmployeesService', function ($http) {
var service = {};
service.GetEmployees = function() {
return $http.get('/Employees/GetEmployees');
}
return service;
})
.filter('start', function() {
return function (input, start) {
if (!input || !input.length) { return; }
start = +start;
return input.slice(start);
};
});
-Index.cshtml
<div ng-app="MyApp">
<div ng-controller="MyController">
<input type="text" ng-model="filterText" name="searchString" placeholder="Search for names.." class="form-control"><br />
<div ng-repeat="emp in Employees |orderBy: 'employeeName'| filter: filterText | start: (currentPage-1) * pageSize | limitTo: pageSize"
class="alert alert-warning col-md-12">
<span ng-bind="emp.employeeName"></span> <b>:</b>
<span ng-bind="emp.employeePhoneNumber"></span>
</div>
<pagination ng-model="currentPage" total-items="Employees.length" items-per-page="pageSize"></pagination>
</div>
</div>
Спасибо заранее.
Извините за delaying.Here мой работает JSFiddle:
https://jsfiddle.net/neslisahozdemir/khbbbe47/4/
, пожалуйста, создайте jsfiddle один раз. –
i updated @ManishSingh –
Я думаю, что он работает отлично! – Viplock