源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

php+ajax实现带进度条的大数据排队导出思路以及源码

  • 时间:2021-12-17 12:17 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:php+ajax实现带进度条的大数据排队导出思路以及源码
废话不多说,先上效果图: [img]http://files.jb51.net/file_images/article/201405/201452594143262.png?201442594158[/img] 点击导出,实现 [img]http://files.jb51.net/file_images/article/201405/201452594214591.png?201442594227[/img] 点击导出 [img]http://files.jb51.net/file_images/article/201405/201452594249154.png?20144259433[/img] 统计完成之后 [img]http://files.jb51.net/file_images/article/201405/201452594337109.png?201442594348[/img] 点击确定 [img]http://files.jb51.net/file_images/article/201405/201452594408680.png?201442594421[/img] 下面来谈谈实现的思路: 前面导出操作简单,从第二个导出操作开始: 点击"确定"调用exportCsv函数
[url=javascript:exportCsv();]function exportCsv() {  //清除等待的转动圈     $('#loading').html('');  //弹出统计总数对话框,函数在后面给出定义     tip(); //ajax请求总数     $.post("<?php echo WEB_URL;?>/index.php?q=onlinesea/getwherecount"+search_uri, function(json){         var return_arr = eval('(' + json + ')');         var num = return_arr['total'];         var processnum = return_arr['processnum'];         if(num == 0){             poptip.title('系统消息');             poptip.content('查询结果为空,不能进行数据导出');         }         else         {             poptip.close();             for (var i in return_arr['cntarr']){                 if (return_arr['cntarr'][i] != 0){                     count_arr[i] = return_arr['cntarr'][i];                 }             }             var ii=0;             for (var i in count_arr){                   type_arr[ii]=i;                   ii++;             }   //当数据不为空的时候弹出是否到处框             exportCsvConfirm(num, processnum);         }     }); }   //弹出确认下载  exportCsvConfirm函数 function exportCsvConfirm(num, processnum) {     var msg = '需要导出的数据有 <span style="color: red">' + num + '</span> 行,可能会占用您较多时间来进行导出。<br />您还需要继续吗?';    // 提示是否继续     $.dialog.confirm(msg, function () {         $('#loading').html('');         processed_count = 0;         index = 1;         win.$('#process_bg').hide().width('0%').show();         win.$('#process_num').html('0');         $.dialog.through({             title: '数据导出进度',             content: win.document.getElementById('processbar'),             lock: true,             opacity: '.1'         },         function(){                 window.location.reload();         });        //当继续的时候         win.$('#progress_info').show().text('正在导出数据,请耐心等待,请勿关闭窗口...');       //开始执行导出操作         excel_export2(num, processnum);     }); }
关键函数excel_export2队列请求,首先会在前面定义全局变量 我们要定义全局变量  index   和iii ,ajaxmark  ,index主要用于对一个表数据太多的时候进行分批导出 ,iii用来控制队列循环,ajaxmark用来判断前一个请求是否执行成功了,成功的话在执行下面的请求
[url=]        }     }); } /* 更新进度条 */ function update_process(process_num) {     win.$('#process_bg').show().width(process_num + '%');     win.$('#process_num').html(process_num); }
下面附上源码,咳咳相关php程序大家自己脑补下吧
<script type="text/javascript" language="javascript"> var search_uri = "<?php echo $uri;?>"; var event = "<?php echo $event;?>"; var processed_count = 0;    // 已处理的数据条数 var index = 1; var iii   = 0; var ajaxmark = 1; var win = $.dialog.parent;    // 顶层页面window对象 var count_arr = new Array(<?php echo count($this->tables);?>); var type_arr = new Array(); function exportCsv() {     $('#loading').html('');     tip();     $.post("<?php echo WEB_URL;?>/index.php?q=onlinesea/getwherecount"+search_uri, function(json){         var return_arr = eval('(' + json + ')');         var num = return_arr['total'];         var processnum = return_arr['processnum'];         if(num == 0){             poptip.title('系统消息');             poptip.content('查询结果为空,不能进行数据导出');         }         else         {             poptip.close();             for (var i in return_arr['cntarr']){                 if (return_arr['cntarr'][i] != 0){                     count_arr[i] = return_arr['cntarr'][i];                 }             }             var ii=0;             for (var i in count_arr){                   type_arr[ii]=i;                   ii++;             }             exportCsvConfirm(num, processnum);         }     }); } function exportCsvConfirm(num, processnum) {     var msg = '需要导出的数据有 <span style="color: red">' + num + '</span> 行,可能会占用您较多时间来进行导出。<br />您还需要继续吗?';     $.dialog.confirm(msg, function () {         $('#loading').html('');         processed_count = 0;         index = 1;         win.$('#process_bg').hide().width('0%').show();         win.$('#process_num').html('0');         $.dialog.through({             title: '数据导出进度',             content: win.document.getElementById('processbar'),             lock: true,             opacity: '.1'         },         function(){                 window.location.reload();         });         win.$('#progress_info').show().text('正在导出数据,请耐心等待,请勿关闭窗口...');         excel_export2(num, processnum);     }); } function excel_export2(num, processnum){       tabletype=type_arr[iii];       num = count_arr[tabletype];       if(typeof(tabletype)=='undefined'&&typeof(num)=='undefined'){             return false;       }       if(ajaxmark==1){             index = 1;             ajaxmark=2;             retrun_var = excel_export_ajax(index, num, processnum, tabletype);             if(typeof(retrun_var)=='undefined'){                              iii++;                   excel_export2(num, processnum);                   if(iii>100){                         return false;                   }             }else if(retrun_var=='success'){                   return false;             }             return false;       }else{             //setTimeout(excel_export2(num, processnum),3000);             //setInterval(_excel_export2(num, processnum),3000);             setTimeout(_excel_export2(num, processnum),3000);       } } function _excel_export2(num, processnum){        return function(){              excel_export2(num, processnum);        } } /* 执行导出 */ function excel_export(num, processnum){     var retrun_var = 'ss';     for (var i in count_arr){         num = count_arr[i];         tabletype = i;         index = 1;         retrun_var = excel_export_ajax(index, num, processnum, tabletype);         if(typeof(retrun_var)=='undefined'){             //alert('xxxx');             setTimeout(function(){exit;},5000);         }         if (retrun_var == 'success')         {             return false;         }     }     return false; } /* AJAX,递归调用 */ function excel_export_ajax(index, num, processnum, tabletype) {     $.ajax({         url: "<?php echo WEB_URL;?>/index.php?q=onlinesea/exportcsv"+search_uri+"/index/"+index+ "/total/" + num + '/tabletype/' + tabletype,         type: 'GET',         success: function(data)         {             ++processed_count;             ++index;             // 更新进度条             var process_num = parseInt((processed_count / processnum) * 100);             if (process_num >= 100)             {                 process_num = 100;             }             update_process(process_num);             //alert(processed_count+'--'+processnum);             if (processed_count >= processnum)             {                 backup_compress();                 return 'success';             }             if (data == '0'){                 ajaxmark=1;                 return false;             }             excel_export_ajax(index, num, processnum, tabletype);         }     }); } /* 更新进度条 */ function update_process(process_num) {     win.$('#process_bg').show().width(process_num + '%');     win.$('#process_num').html(process_num); } /* 备份文件执行压缩 */ function backup_compress() {     win.$('#progress_info').text('正在生成压缩文件...');     $.ajax({         url: "<?php echo WEB_URL;?>/index.php?q=onlinesea/compress/event/<?php echo $event;?>",         success: function(msg){             win.$('#process_bg').show().width('100%');             win.$('#process_num').html('100');             win.$('#progress_info').html('导出数据完成。  <a href="' + msg + '" style="color: #006699; text-decoration: underline">下载文件</a>');         }     }); } function tip() {     poptip = $.dialog.through({         id: 'tip',         title: '系统消息',         content: '正在统计总数,请勿关闭窗口  <img src="http://images.cnblogs.com/loading_s.gif" />',         width: 300,         height: 100,         icon: 'system',         lock: true,         opacity: .1     },     function(){         window.location.reload();     });     poptip.show(); } function packetDelete(url,msg) {     $.dialog.confirm(msg, function () {         $.post(url, function(data){           if(data == '1'){               $.dialog('删除成功', function(){window.location.reload();});           }           else if(data == '2'){             $.dialog('删除失败', function(){window.location.reload();});           }           else if(data == '3'){             $.dialog('文件不存在,或者已删除', function(){window.location.reload();});           }       });      }); } </script>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部