将angular-ui的分页组件封装成指令的方法详解
前端之家收集整理的这篇文章主要介绍了
将angular-ui的分页组件封装成指令的方法详解,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
准备工作:
(1)一如既往的我还是使用了requireJS进行js代码的编译
(2)必须引入angualrJS,ui-bootstrap-tpls-1.3.2.js,bootstrap.css....
首先抛出几个问题:
a):何时回用到分页 (当后端返回的数据过多,一页装不满时,我们必须要采取分页的效果,给用户良好的视觉效果)
b):分页一般要传递哪些数据 (总的数据数量,每页固定显示多少条数据,当点击分页时候返回当前的页码.......这三条是必须的)
第一步:先完成指令的封装
我会在 js/directives/pagedir 此文件下完成指令的编写
pagedir.html(指令页面模板)
<button class="btn btn-info" type="button" ng-click="setPage(3)">Set current page to: 3
rotate
defaulted to true
and force-ellipses
set to true
:
<uib-pagination class="pagination-sm" 分页函数="" ng-change="pageChanged()" 是否将当前页显示在中间="" rotate="true" 是否显示首页,和末页的数字="" boundary-link-numbers="true" 是否显示“.....”这几个点="" force-ellipses="true" 显示页码的页码tabs数量(不包含首页,末页)="" max-size="maxSize" 当前页="" ng-model="bigCurrentPage" 每页显示的数据条数="" ="" items-per-page="pageSize" 总的数据记录数="" total-items="bigTotalItems" ="">
Page: {{bigCurrentPage}}/{{numPages}}
pagedir.js(指令的操作js)
myapp.directive("pagedir",[function(){
return{
templateUrl:"js/directives/pagedir/pagedir.html",//指令的模板<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>
restrict:'AE',scope:{
data:'=',//用于<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a><a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>控制器传回来的数据(例如:总得记录数,每页<a href="https://www.jb51.cc/tag/xianshi/" target="_blank" class="keywords">显示</a>的<a href="https://www.jb51.cc/tag/shuliang/" target="_blank" class="keywords">数量</a>等....)
currentpage:'=',//返回当前页给<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>控制器
},link:function(s,el,attrs){
},controller:['$scope','$log',function($scope,$log){
$scope.bigTotalItems=$scope.data.bigTotalItems;
$scope.pageSize=$scope.data.pageSize;
$scope.bigCurrentPage=$scope.data.bigCurrentPage;
$scope.numPages=$scope.data.numPages;
$scope.maxSize=$scope.data.maxSize;
$scope.setPage = function (pageNo) {//用于设置回到指定页
$scope.bigCurrentPage = pageNo;
console.log( $scope.bigCurrentPage);
};
$scope.pageChanged = function() {//用于返回当前页
$log.log('Page changed to: ' + $scope.bigCurrentPage);
console.log($scope.bigCurrentPage);
$scope.currentpage=$scope.bigCurrentPage;//赋值,准备传给<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>控制器,用于接口的取值
};
}],}
}]);
});
第二步:明确使用地方
我打算在test.html页面上使用分页的功能(你可以在各个有多条数据现实的页面使用分页)
test.html
this is page dir
<pagedir ng-click="getCurPage()" currentpage="currentpage" data="dataPage">
对应的控制器:idea_test_ctrl
myapp.controller("idea_test_ctrl",['$scope',function($scope){
$scope.dataPage={ //用于分页的数据
maxSize:5,//显示五个页码按钮(不包括第一条,和最后一条)
bigTotalItems:50,//总的记录数(一般来源于接口的返回数据)
bigCurrentPage:1,//当前页码
pageSize:5,//每页显示的数据数量
numPages:50/5,//共有多少页
};
$scope.getCurPage=function(){
console.log($scope.currentpage,"========================================");
//接下来的调用后台接口,返回数据
//...........................一系列的后续操作
}
}]);
});
顺便给出路由的配置
url: '/test',views: {
"part": {
templateUrl: 'tpls/ideas/test.html',controller:"idea_test_ctrl"
}
}
})
总结一下:封装此指令的难点(假如你已经了解怎么使用angualr的指令了)
1>:如何双向传值的问题(在页面控制器设置的数值传递到分页模块控制器,以及每次点击分页怎么样将页码传回页面控制器用于调用接口的传参)
一点分享:link链接方法与指令的controller有啥关系(貌似都可以进行数据的操作) 指令的控制器和link函数可以进行互换。控制器主要是用来提供可在指令间复用的行为,但链接函数只能在当前内部指令中定义行为,且无法在指令间复用.link函数可以将指令互相隔离开来,而controller则定义可复用的行为。 (指令是可以嵌套的,还记得我们指令中有一个require的属性吗?)
好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对编程之家的支持。
原文链接:https://www.f2er.com/js/39386.html