我正在调用一个Web服务,该服务返回大约3000条记录,作为HTML响应和数据条目。我试图使用angularJS读取此响应。
下面是我用来调用服务的AngularJS代码
angular.module('tabApp', ['ngSanitize'])
.controller('TabController', ['$scope', 'HttpService', function($scope, HttpService) {
$scope.tab = 0;
$scope.setTab = function(newTab){
$scope.tab = newTab;
$scope.loading = true;
HttpService.CallService('Service.php?id='+newTab,newTab, function (data) {
$scope.myText = data;
$('.count').show();
$("[id^=searchg]").show();
$('.results').show();
});
};
$scope.isSet = function(tabNum){
return $scope.tab === tabNum;
};
$scope.setTab1 = function(newTab1){
$scope.tab = newTab1;
$('.loaderImage').hide();
};
$scope.isSet1 = function(tabNum){
return $scope.tab === tabNum;
};
}])
.service('HttpService', ['$rootScope', '$http', function ($rootScope, $http) {
$rootScope.loading = true;
return {
CallService: function (url,tabnum, callback) {
$http({
method: "POST",
url: url,
data: {id: tabnum}})
.success(function (data, status) {
$('.loaderImage').hide();
callback(data, status);
}).error(function (data, status) {
$('.loaderImage').hide();
callback(status);
});
}
}
}]);
我的问题是如果返回的记录超过1500,浏览器会挂起。请告知我如何改进这一点。
更新
我的HTML代码看起来像这样
<div ng-show="isSet(1)">
<div id=matches style="display:none"></div>
<input type=text id=searchg placeholder="Type to search..." style="display:none" />
<p class="preload" ng-bind-html="myText"></p>
</div>
答案 0 :(得分:2)
正如我们所看到的那样,您正试图绑定大量数据。在未来,它可能会更笨重。 你应该使用服务器端分页,只获取记录数,你的分页是什么。
以下是参考的JSFiddle
链接。
http://jsfiddle.net/dwahlin/3Kewg/
希望这有帮助! CHEERS代码! :)
答案 1 :(得分:0)
正如@Mohit Dixit建议的那样,您应该更喜欢进行服务器端分页并仅请求活动页面记录。
我建议你使用智能表库。 Here是相同的官方网站。它们支持分页(服务器端和客户端),一次过滤和排序。
请注意,有许多图书馆可用于此目的,但我建议这样做,因为我在过去几年使用它。