angularjs的前端使用

 第一步导入:
<script src= "pagination.js"></script>

 第二步:在模块使用控制器中添如下代码:
 //分页查询
    //重新加载列表 数据
    $scope.reloadList = function () {
        //切换页码
        $scope.findPage($scope.paginationConf.currentPage, $scope.paginationConf.itemsPerPage);
    }

    //分页控件配置
    $scope.paginationConf = {
        currentPage: 1,
        totalItems: 10,
        itemsPerPage: 10,
        perPageOptions: [10, 20, 30, 40, 50],
        onChange: function () {
            $scope.reloadList();//重新加载
        }
    };

    //分页
    $scope.findPage = function (page, rows) {
        $http.get('../brand/findPage/' + page + '/' + rows).success(
            function (response) {
                $scope.list = response.rows;
                $scope.paginationConf.totalItems = response.total;//更新总记录数
            }
        );
    }
})
 

第三步:循环显示数据

<tr ng-repeat="brand in list">
    <td><input type="checkbox"></td>
    <td>{{brand.id}}</td>
    <td>{{brand.name}}</td>
    <td>{{brand.firstChar}}</td>
</tr>

第四步:在页面分页的</table>下调用

<!-- 分页 -->
<tm-pagination conf="paginationConf"></tm-pagination>
 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值