angular/bootstrap サイトにページネーションを実装しようとしています。ページごとの正しい行数を示すデータがあり、適切なページ数を示す角度のあるページングがあります...しかし、ページングを使用してデータを更新する方法を教えてくれる場所がどこにあるかを調べてみてください。ページ # がクリックされた...?! {{currentPage}} は更新中ですが、getPresentations を呼び出してリストを更新する方法がわかりません。
<div>
{{noOfPages}} {{currentPage}} {{maxSize}}
<pagination num-pages="noOfPages" current-page="currentPage"></pagination>
</div>
<script type="text/javascript">
angular.module('app', ['ui', 'shared', 'ui.bootstrap']).controller('AppCtl', function ($scope, $http, $window) {
var mvc = $window.MVC;
$scope.noOfPages = 0;
$scope.currentPage = 1;
$scope.maxSize = 5;
$scope.getPresentations = function () {
$http.get(mvc.base + "API/Presentations?page=" + $scope.currentPage + "&itemsPerPage=10")
.success(function (result) {
$scope.presentations = result.Items;
$scope.noOfPages = result.TotalPages;
$scope.currentPage = result.Page;
})
.error(function (result, status) {
$scope.newModal.errors = mvc.getApiErrors(status, result);
});
};
$scope.getPresentations();
});
</script>