Extjs — Grid數據導出成Excel

最近由於項目問題,須要解決Extjs導出成Excel的問題。html

下面簡單描述這個問題解決的步驟以下:瀏覽器

一、先在js文件裏寫了一個button的handler事件,經過點擊按鈕,來實現調用ExportExcel(GridPanel,{store:null, title: ' '})服務器

ExportExcel方法的源碼以下:app

/** Execl導出方法 **/
function ExportExcel(gridPanel, config) {
    if (gridPanel) {
        var tmpStore = gridPanel.getStore();
        var tmpExportContent = '';

        //如下處理分頁grid數據導出的問題,從服務器中獲取全部數據,須要考慮性能
        var tmpParam = Ext.ux.clone(tmpStore.lastOptions); //此處克隆了原網格數據源的參數信息

        if (tmpParam && tmpParam.params) {
            delete (tmpParam.params[tmpStore.paramNames.start]); //刪除分頁參數
            delete (tmpParam.params[tmpStore.paramNames.limit]);
        }
        var tmpAllStore = new Ext.data.GroupingStore({//從新定義一個數據源
            proxy: tmpStore.proxy,
            reader: tmpStore.reader
        });
        tmpAllStore.on('load', function (store) {
            config.store = store;
            tmpExportContent = gridPanel.getExcelXml(false, config); //此方法用到了一中的擴展
            if (Ext.isIE || Ext.isSafari || Ext.isSafari2 || Ext.isSafari3) {//在這幾種瀏覽器中才須要,IE8測試不能直接下載了
                if (!Ext.fly('frmDummy')) {
                    var frm = document.createElement('form');
                    frm.id = 'frmDummy';
                    frm.name = id;
                    frm.className = 'x-hidden';
                    document.body.appendChild(frm);
                }
                Ext.Ajax.request({
                    //將生成的xml發送到服務器端,需特別注意這個頁面的地址
                       url: 'GridToExcel.aspx',                       
method: 'POST', form: Ext.fly('frmDummy'), callback: function (o, s, r) { //alert(r.responseText); }, isUpload: true, params: { ExportContent: tmpExportContent, ExportFile: gridPanel.id + '.xls' } }); } else { document.location = 'data:application/vnd.ms-excel;base64,' + Base64.encode(tmpExportContent); } }); tmpAllStore.load(tmpParam); //獲取全部數據 } };

同時須要在引用了上面js文件的 html文件/aspx文件裏 再引用一個GridToExecl.js文件,由於代碼太多了,因此我把它上傳了,就不貼代碼了。性能

 GridToExecl.js測試

 

二、GridToExcel.aspx頁面的相關代碼:this

前臺:url

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GridToExecl.aspx.cs" Inherits="GridToExecl" ValidateRequest="false" %>

//ValidateRequest = "false"很是重要,缺乏它,IE系列瀏覽器不能正常導出

後臺:spa

public partial class GridToExcel : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            if (Request["ExportContent"] != "")
            {
                string tmpFileName = "excel.xls";
                string tmpContent = Request["ExportContent"];//獲取傳遞上來的文件內容
                if (Request["ExportFile"] != "")
                {
                    tmpFileName = Request["ExportFile"];//獲取傳遞上來的文件名
                    tmpFileName = System.Web.HttpUtility.UrlEncode(Request.ContentEncoding.GetBytes(tmpFileName));//處理中文文件名的狀況                    
                }
                Response.Write("&amp;lt;script&amp;gt;document.close();&amp;lt;/script&amp;gt;");
                Response.Clear();
                Response.Buffer = true;
                Response.ContentType = "application/vnd.ms-excel";
                Response.AddHeader("Content-Disposition", "attachment;filename=\"" + tmpFileName + "\"");
                Response.Charset = "";
                this.EnableViewState = false;
                System.IO.StringWriter tmpSW = new System.IO.StringWriter();
                System.Web.UI.HtmlTextWriter tmpHTW = new System.Web.UI.HtmlTextWriter(tmpSW);
                tmpHTW.WriteLine(tmpContent);
                Response.Write(tmpSW.ToString());
                Response.End();
            }
        }
    }
}
相關文章
相關標籤/搜索