我想在我的數據表中的一個數據表上應用ui-bootstrap分頁。當表格在ng-view之外,但當它位於ng-view過濾器和排序工作正常且分頁出現以下錯誤時,它工作正常。ui-bootstrap分頁在ng-view外部正常工作,但不在ng-view中
指令'分頁'的模板必須只有一個根元素。 template/pagination/pagination.html
我在後端使用spring rest服務。
<script src="http://code.angularjs.org/1.2.16/angular-resource.js"></script>
<script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.11.0.js"></script>
這些是我已經包含的文件。
控制器代碼是
controller("FileController", function($window, $scope, $location) {
$scope.order = function (predicate) {
$scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false;
$scope.predicate = predicate;
};
$scope.paginate = function (value) {
var begin, end, index;
begin = ($scope.currentPage - 1) * $scope.numPerPage;
end = begin + $scope.numPerPage;
index = $scope.fileList.indexOf(value);
return (begin <= index && index < end);
};
});在HTML
和分頁標籤
<pagination total-items="totalItems" ng-model="currentPage"
max-size="10" boundary-links="true"
items-per-page="numPerPage" class="pagination-sm">
</pagination>