/// <summary> /// 提供将泛型集合数据导出Excel文档. /// </summary> /// <typeparam name="T"></typeparam> public class ExcelResult<T> : ActionResult where T : new() { public ExcelResult(IList<T> entity, string fileName, bool…
今天在做项目的时候,遇到了前端下载Excel的功能,结果原先的代码,如下: function generate_excel(tableid) { var table = document.getElementById(tableid); var html = table.outerHTML; window.open('data:application/vnd.ms-excel;base64,' + base64_encode(html)); } 此种…