论坛首页 Web前端技术论坛

Ext 导出Excel的一种模式

浏览 5737 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2010-04-01   最后修改:2010-04-09

为按钮或者菜单关联如下的函数,内容根据具体需求而定

通过调用window.open('url'),将请求和参数传导后台,然后再后台通过文件流写出,可以比较优雅的导出excel文件

同时和ext推荐的 one page,one appllication理念不冲突

function exportExcel(){
        var startDate = Ext.util.Format.date(historyAchievementStore.baseParams['startDate'],'Y-m-d');
        var endDate = Ext.util.Format.date(historyAchievementStore.baseParams['endDate'],'Y-m-d');
        var searchType = historyAchievementStore.baseParams['searchType'];
        var department_id = historyAchievementStore.baseParams['department_id'];
        var department_name = historyAchievementStore.baseParams['department_name'];
        if(startDate == null || department_name == null){
            Ext.Msg.alert('系统信息','请先查找数据');
            return false;
        }
        var appWindow = window.open("export/export_exportDepAchievement.action?startDate=" + startDate + "&endDate=" + endDate + "&searchType=" + searchType +"&department_id=" + department_id + "&department_name=" + encodeURI(department_name) + "&page=1"); //调action得到数据生成execl格式的数据,response发往前台 
                      
           appWindow.focus();
       
    }
 

 

 

//后台的例子

response.setHeader("Content-disposition","attachment;" +
                     "filename="+ new String((department_name + "业绩").getBytes("GBK"), "ISO_8859_1") + ".xls");  
            response.setContentType("application/vnd.ms-excel");  
            WritableWorkbook wbook = ExcelUtil.createDepAchievement(staff.getStaff_name(), getSearchTypeDesc(),department_name,department_id, searchType, startDate, endDate, page,response.getOutputStream());
            wbook.write();
            wbook.close();
            response.getOutputStream().close();
 

 

   发表时间:2010-07-01  
楼主能不能发个图片看看那 !!
0 请登录后投票
   发表时间:2010-07-01  
对于小指数据来说这些都很简单,复杂的是大量数据的导出,如100万条数据,这些才是难点!!
0 请登录后投票
   发表时间:2010-07-08  
100万就不要这么导了吧
0 请登录后投票
   发表时间:2010-07-08  
100万数据搞不好就好几百M,用web下载也得不少时间
0 请登录后投票
   发表时间:2010-11-09  
x03570227 写道
100万数据搞不好就好几百M,用web下载也得不少时间

excel导出大量数据,有什么好的解决方法?
0 请登录后投票
   发表时间:2010-11-16  
官方直接不是有个EXCEL 导出的 js支持嘛
0 请登录后投票
论坛首页 Web前端技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics