我正在尝试显示包含大量元素的表格。我想对表格进行分页并仅加载当前页面上显示的元素。现在,json 加载了$resource
.
我在这里读到,在 json 标头中传递分页信息(currentPage、pagesCount 和 elementsCount)是个好主意。
如何从角度访问 json 标头中的那些信息?
这是基本的js结构:
angular.module('App.services', ['ngResource']).
factory('List', function($resource){
return $resource('url/of/json/:type/:id', {type:'@type', id:'@id'});
});
angular.module('App.controllers', []).
controller('ListCtrl', ['$scope', 'List', function($scope, List) {
var $scope.list= List.query({offset: 0, limit: 100, sortType: 'DESC' });
}]);