当前位置:首页 > PHP教程 > php高级应用 > 列表

jquery+php实现导出datatables插件数据到excel的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-08 17:22:56 浏览: 评论:0 

这篇文章主要介绍了jquery+php实现导出datatables插件数据到excel的方法,实例分析了jquery插件datatables的使用方法与php导出datatables数据到Excel的技巧,需要的朋友可以参考下

本文实例讲述了jquery+php实现导出datatables插件数据到excel的方法。分享给大家供大家参考。具体如下:

DataTables是一个jQuery的表格插件。这是一个高度灵活的工具,依据的基础逐步增强,这将增加先进的互动控制,支持任何HTML表格。主要特点:

1. 自动分页处理

2. 即时表格数据过滤

3. 数据排序以及数据类型自动检测

4. 自动处理列宽度

5. 可通过CSS定制样式

6. 支持隐藏列

7. 易用

8. 可扩展性和灵活性

9. 国际化

10.动态创建表格

11.免费

插件地址http://www.datatables.net/

不过可惜的是官方网站表格数据导出方法使用的是tabletools插件,利用flash导出数据,而且不支持中文数据,通过查找官方的API和资料,找到使用jquery和php导出数据方法。

导出数据的javascript函数

  1. function table2csv(oTable, exportmode, tableElm) {  
  2.     var csv = '';  
  3.     var headers = [];  
  4.     var rows = [];  
  5.     // Get header names  
  6.     $(tableElm+' thead').find('th').each(function() {  
  7.       var $th = $(this);  
  8.       var text = $th.text();  
  9.       var header = '"' + text + '"';  
  10.       // headers.push(header); // original code  
  11.       if(text != "") headers.push(header); // actually datatables seems to copy my original headers so there ist an amount of TH cells which are empty  
  12.     });  
  13.     csv += headers.join(',') + "\n";  
  14.     // get table data  
  15.     if (exportmode == "full") { // total data  
  16.       var total = oTable.fnSettings().fnRecordsTotal()  
  17.       for(i = 0; i < total; i++) {  
  18.         var row = oTable.fnGetData(i);  
  19.         row = strip_tags(row);  
  20.         rows.push(row);  
  21.       }  
  22.     } else { // visible rows only  
  23.       $(tableElm+' tbody tr:visible').each(function(index) {  
  24.         var row = oTable.fnGetData(this);  
  25.         row = strip_tags(row);  
  26.         rows.push(row);  
  27.       })  
  28.     }  
  29.     csv += rows.join("\n");  
  30.     // if a csv div is already open, delete it  
  31.     if($('.csv-data').length) $('.csv-data').remove();  
  32.     // open a div with a download link  
  33.     $('body').append('<div class="csv-data"><form enctype="multipart/form-data" method="post" action="/csv.php"><textarea class="form" name="csv">'+csv+'</textarea><input type="submit" class="submit" value="Download as file" /></form></div>');  
  34. }  
  35. function strip_tags(html) {  
  36.   var tmp = document.createElement("div");  
  37.   tmp.innerHTML = html;  
  38.   return tmp.textContent||tmp.innerText;  
  39. }  

函数支持导出所有数据和当前页数据

  1. // export only what is visible right now (filters & paginationapplied) 
  2. $('#export_visible').click(function(event) {   
  3.    var oTable;  
  4.    oTable= $('#spdata').dataTable();  
  5.    event.preventDefault();  
  6.    table2csv(oTable, 'visible''#spdata'); }) 
  7.    // export all table data  
  8. $('#export_all').click(function(event) {   
  9.   var oTable;  
  10.   oTable= $('#spdata').dataTable();  
  11.   event.preventDefault();  
  12.  table2csv(oTable, 'full''#spdata'); })  

其中#spdata是table的id

后台php导出excel代码

  1. header("Content-Type: application/vnd.ms-execl");   
  2. header("Content-Disposition: attachment; filename=myExcel.csv");   
  3. header("Pragma: no-cache");   
  4. header("Expires: 0");   
  5. $buffer = $_POST['csv'];      
  6. $buffer=str_replace(",",",\t",$buffer);  
  7. $buffer=mb_convert_encoding($buffer,"GB2312","UTF-8");   
  8. echo $buffer;

Tags: jquery+php datatables

分享到: