我正在显示 ng-include 中的元素列表。元素列表来自使用$resource query
服务的服务器。
该列表使用ui-bootstrap 分页指令进行分页。服务器在 Json 标头中发送分页信息(属性名为 X-MyApp-...),并被query
回调函数拦截。
这是html:
<table ng-include src="'partials/tplList.html'" ng-init="listInit = {'type': collec.type, 'offset': 1}" ng-controller="ListCtrl" >
</table>
tplList.html :
<tbody ng-init="loadList(listInit)"><tr ng-repeat="elm in list">
<td>{{elm.prop1}}</td><td>{{elm.prop2}}</td><td>{{elm.prop3}}</td>
</tr></tbody>
<tfoot><tr><td colspan="4">
<span ng-show="pageCount>1">
<pagination num-pages="pageCount" current-page="currentPage" max-size="10" on-select-page="loadList(collect(listInit, {offset: page}))">
</pagination>
</span>
</td></tr></tfoot>
和控制器:
controller('ListCtrl', ['$scope', 'List', function($scope, List) {
// collect: concatenate the objects before to send it to loadList()
$scope.collect = function (a,b){
var c = {};
for (var att in a) { c[att] = a[att]; }
for (var att in b) { c[att] = b[att]; }
return c;
}
$scope.loadList = function (param) {
$scope.list = List.query(p, function(list, response) {
$scope.currentPage = response("X-MyApp-currentPage");
$scope.pageCount = response("X-MyApp-pagesCount");
console.log($scope.currentPage); // returns 1 when the page loads.
});
}
}])
和服务:
factory('List', function($resource){
return $resource('url/to/the/json/:type', {type:'@type'});
})
一切正常,除了一件事:当页面加载时,分页组件内的第一页按钮(“1”)没有像应有的那样被禁用(并且“上一个”和“第一个”按钮也没有)。直到我单击另一个页码(选择时正确禁用)然后单击第一页按钮后,它才会被禁用。
任何想法 ?