zoukankan      html  css  js  c++  java
  • Ajax 导出Excel 方式

    1.使用iframe 加载 使用get方式

    <iframe id="comdownshow" height="0" width="0" frameborder="0" scrolling="no"></iframe>

    2.使用from表单组装 使用post方式

    jQuery.download = function (url, method, Name) {
    jQuery('<form action="' + url + '" method="' + (method || 'post') + '">' +
    '<input type="text" name="AddTimeStrat" value=""/>' +
    '<input type="text" name="AddTimeEnd" value=""/>' +
    '<input type="text" name="Name" value="' + Name + '"/>' +
    '</form>')
    .appendTo('body').submit().remove();
    };

    3.click对象触发

    function Getexcel() {

    //$("#comdownshow").attr("src", "/ModuleContext/EventAccount/Handler/EventAccountManage.ashx?type=ZHZXTJDOWN&AddTimeStrat=" + $("#txtAddTimeStrat").val() + "&AddTimeEnd=" + $("#txtAddTimeEnd").val() + "&Name=" + $("#txtName").val() + "&t=" + new Date().getTime());

    $.download("/ModuleContext/EventAccount/Handler/EventAccountManage.ashx?type=ZHZXTJDOWN","post","城管科");
    }

    4.服务端代码ashx

    string fileName = System.Web.HttpUtility.UrlEncode(name + ".xls");
    context.Response.ContentType = "application/vnd.ms-excel";
    context.Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", fileName));
    context.Response.Clear();
    context.Response.BinaryWrite(ExportStaticDept(list).GetBuffer());

    //ExportStaticDept 生成excel => public MemoryStream ExportStaticDept .....

  • 相关阅读:
    8.1 管道符| 使用技巧
    7.1 elementui的radio无法选中问题
    2.0 es6数组操作
    小练习-双数日期
    匿名函数、三元表达式、列表生成式
    sys.argv
    常用模块 os,sys,
    Python操作数据库
    Python time模块
    加密模块hashlib
  • 原文地址:https://www.cnblogs.com/linsu/p/7418361.html
Copyright © 2011-2022 走看看