dsyo9700 2016-04-14 07:56
浏览 187
已采纳

Angularjs:即使在按下页面按钮后,dir-pagination-controls也不显示下一页

I've been trying to incorporate dir-pagination-controls, but can't work display the page based on the chosen page.

<div ng-controller="TableController as tc">
    <table>
        <tbody dir-paginate="order in tc.orders | itemsPerPage: 10" total-items="tc.totalOrders" current-page="currentPage">
            <tr ng-click="tc.showOrderDetail(order.id)">
                <td ng-bind="order.id"></td>
                <!-- Simliar lines are here -->
            </tr>
        </tbody>
    </table>
    <dir-pagination-controls 
       boundary-links="true" 
       on-page-change="tc.pageChangeHandler(newPageNumber)" 
       template-url="dirPagination.tpl.html">
    </dir-pagination-controls>
</div>

This table shows what I expect. However, the resulting pagination controller doesn't show the next page when I press any of its buttons.

Here is a relevant part of the script.

angular.module('adminAngular', ['ui.bootstrap','dialogs.main','angularUtils.directives.dirPagination'])
.controller('TableController', function($http){

    var instance = this;

    this.orders = [];
    $http({
        //works fine
    }).then(function (response) {
        instance.orders = response.data;
        instance.totalOrders = instance.orders.length;
        //The "instance.orders" gets the expected data, and used for in dir-paginate="order in tc.orders
    });

    this.pageChangeHandler = function(num) {
        console.log('going to page ' + num);
    };

    this.pageChanged = function(newPage) {
        getResultsPage(newPage);
    };

UPDATE The pageChangeHandler shows which button was pressed, but the page doesn't change. (Everything else is fine.)

This code is based on the official document and its demo,but I can't find what is actually wrong.

I'd appreciate if you give any advice.

  • 写回答

1条回答 默认 最新

  • doucuo1642 2016-04-14 08:44
    关注

    The solution is to remove total-items from your dir-paginate directive. Here is a plunker with the simple example.

    The total-items attribute is used when you do async calls to get each page items. So, first async call you get items for first page, and when you change the page you are supposed to get from the server the items for the corresponding page. The total-items tell the pagination directive how many pages you have in total, so it knows how to build the element.

    If you want an async call for each page, you use total-items and you implement pageChanged where you do another async call.

    $scope.pageChanged = function(newPage) {
       // get orders for newPage number
       $http.get(...).then(function(response) {
           // orders for newPage number fill the same 'orders' array
           this.orders = response.data
       });
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题
  • ¥15 linux驱动,linux应用,多线程