本文介绍了angularJs中datatable实现,有需要的小伙伴可以参考下
html引用derective:
复制代码 代码如下:
controller设置:
$scope.dtOptions = {
"bProcessing": true,
"bServerSide": true,
iDisplayLength: 5,
sAjaxSource: 'http://10.188.192.200:8080/employee/page?deptId='+ data,
sAjaxDataProp: 'aaData',
"sDom": "<'row'<'col-sm-6'l><'col-sm-6'f>r>t<'row'<'col-sm-6'i><'col-sm-6'p>>",
sPaginationType: "full_numbers",
"aoColumns":
[
{ "mData": "employeeId" },
{ "mData": "employeeName",
"sClass": "center",
"mRender": function(data,type,full) {
return '阿司法所';
}
},
{ "mData": "employeeEmail" },
{ "mData": "employeeMobilePhoneMaster" }
],
"fnServerData": function( sUrl, aoData, fnCallback, oSettings ) {
oSettings.jqXHR = $.ajax({
"url": sUrl,
beforeSend: function(xhr) {
xhr.withCredentials = true;
},
"data": aoData,
"type": 'get',
"success": fnCallback,
"cache": false
});
}
}
angular.datatable.js:
angular.module('datatablesDirectives', []).directive('datatable', function ($http) {
return {
// I restricted it to A only. I initially wanted to do something like
// ...
// But thead elements are only valid inside table, and is not a table.
// So.. no choice to use
restrict: 'A',
link: function ($scope, $elem, attrs) {
var options = {};
// Start with the defaults. Change this to your defaults.
options = {}
// If dtOptions is defined in the controller, extend our default option.
if (typeof $scope.dtOptions !== 'undefined') {
angular.extend(options, $scope.dtOptions);
}
// If dtoptions is not declared, check the other options
if (attrs['dtoptions'] === undefined) {
// Get the attributes, put it in an options
// We need to do a switch/case because attributes does not retain case
// and datatables options are case sensitive. Damn. It's okay! We need to detect
// the callbacks anyway and call it as functions, so it works out!
// I put what I needed, most of my settings are not dynamics except those 2.
for (property in attrs) {
switch (property) {
// This is the ajax source
case 'sajaxsource':
options['sAjaxSource'] = attrs[property];
break;
// This is the ajax data prop. For example, your result might be
// {code: 200, data: [ .. ]} -> in the case, sAjaxDataProp is data
case 'sajaxdataprop':
options['sAjaxDataProp'] = attrs[property];
break;
}
}
} else {
// If dtoptions is declare, extend the current options with it.
angular.extend(options, $scope.dtOptions);
}
// Just some basic validation.
if (typeof options['sAjaxSource'] === 'undefined') {
throw "Ajax Source not defined! Use sajaxsource='/api/v1/blabla'";
}
// for Angular http inceptors
if (typeof options['fnServerData'] === 'undefined') {
options['fnServerData'] = function (sSource, aoData, resultCb) {
$http.get(sSource, aoData).then(function (result) {
resultCb(result.data);
});
};
}
// Get the column options, put it in a aocolumn object.
// Obviously, mdata is the only one required.
// I personally just needed those 3, if you need other more feel free to add it.
// mData also accepts a function; I'm sure there's a more elegant way but for now
// it detects if it's a function, and if it is, do it.
options.aoColumns = [];
// Get the thead rows.
$elem.find('thead th').each(function() {
var colattr = angular.element(this).data();
//console.log(colattr);
//console.log('demodeo');
// Detects if it's a function. Must exist in scope.
if (colattr.mdata.indexOf("()") > 1) {
// Simple one-liner that removes the ending ()
var fn = $scope[colattr.mdata.substring(0, colattr.mdata.length - 2)];
// Throw an error if it's not a function.
if (typeof fn === 'function') {
options.aoColumns.push({
mdata: fn,
sClass: colattr.sclass,
bVisible: colattr.bvisible,
mRender: colattr.mrender
});
} else {
throw "mData function does not exist in $scope.";
}
} else {
//console.log('<1?');
options.aoColumns.push({
mdata: colattr.mdata,
sClass: colattr.sclass,
bVisible: colattr.bvisible,
mRender: colattr.mrender
});
}
});
// Load the datatable!
$elem.dataTable(options);
//console.log(options);
}
}
});
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。
JavaScript相关栏目本月热门文章
- 1【Linux驱动开发】设备树详解(二)设备树语法详解
- 2别跟客户扯细节
- 3Springboot+RabbitMQ+ACK机制(生产方确认(全局、局部)、消费方确认)、知识盲区
- 4【Java】对象处理流(ObjectOutputStream和ObjectInputStream)
- 5【分页】常见两种SpringBoot项目中分页技巧
- 6一文带你搞懂OAuth2.0
- 7我要写整个中文互联网界最牛逼的JVM系列教程 | 「JVM与Java体系架构」章节:虚拟机与Java虚拟机介绍
- 8【Spring Cloud】新闻头条微服务项目:FreeMarker模板引擎实现文章静态页面生成
- 9JavaSE - 封装、static成员和内部类
- 10树莓派mjpg-streamer实现监控及拍照功能调试
- 11用c++写一个蓝屏代码
- 12从JDK8源码中看ArrayList和LinkedList的区别
- 13idea 1、报错java: 找不到符号 符号: 变量 log 2、转换成Maven项目
- 14在openwrt使用C语言增加ubus接口(包含C uci操作)
- 15Spring 解决循环依赖
- 16SpringMVC——基于MVC架构的Spring框架
- 17Andy‘s First Dictionary C++ STL set应用
- 18动态内存管理
- 19我的创作纪念日
- 20Docker自定义镜像-Dockerfile
热门相关搜索
路由器设置
木托盘
宝塔面板
儿童python教程
心情低落
朋友圈
vim
双一流学科
专升本
我的学校
日记学校
西点培训学校
汽修学校
情书
化妆学校
塔沟武校
异形模板
西南大学排名
最精辟人生短句
6步教你追回被骗的钱
南昌大学排名
清朝十二帝
北京印刷学院排名
北方工业大学排名
北京航空航天大学排名
首都经济贸易大学排名
中国传媒大学排名
首都师范大学排名
中国地质大学(北京)排名
北京信息科技大学排名
中央民族大学排名
北京舞蹈学院排名
北京电影学院排名
中国戏曲学院排名
河北政法职业学院排名
河北经贸大学排名
天津中德应用技术大学排名
天津医学高等专科学校排名
天津美术学院排名
天津音乐学院排名
天津工业大学排名
北京工业大学耿丹学院排名
北京警察学院排名
天津科技大学排名
北京邮电大学(宏福校区)排名
北京网络职业学院排名
北京大学医学部排名
河北科技大学排名
河北地质大学排名
河北体育学院排名



