【项目总结】之——导出Excel
近来接手的项目,有几个很值得分享的东西。经过自己的不懈实践,总结,分享给大家,希望能对大家的学习有点帮助。
本次探讨的是mvc框架之中的一种导出方法,导出excel。
先让大家看一下啊我们的view界面:
我们的view代码:
<body>
<div style="margin-top:30px;margin-left:20px;">
<div class="easyui-panel" title="查询" style="width:1240px;">
<div style="margin:10px 20px;float:left">
@*加载搜索框*@
请输入要查询的内容:
<input class="easyui-textbox" id="txtSearch" name="txtSearch" onkeydown="Enter();" maxlength="20" style="width:150px;">
<a href="javascript:void(0)" class="easyui-linkbutton" data-options="iconCls:'icon-search',plain:true" onclick="stuSearch()" >查询</a>
<a id="download" @*href="/FreshStudent/ExportExcel"*@ class="easyui-linkbutton" style="margin-left :720px";data-options="iconCls:'',plain:true" onclick="Export()">导出Excel</a>
</div>
</div> </div> <div id="ContentAreas" style="margin-top: 15px; margin-left: 20px; width: 960px;"> <table id="dt" class="easyui-datagrid" title="学生报表" style="width: 1240px; height: auto"
data-options="url:'/FreshStudent/SelectStu',singleSelect:true,pagination:true">
<thead>
<tr>
<th data-options="field:'StudentCode',width:150,align:'center',sortable:true" >学号</th>
<th data-options="field:'Name',width:120,align:'center'">姓名</th>
<th data-options="field:'strSex',width:120,align:'center'">性别</th>
<th data-options="field:'Score',width:120,align:'center'">分数</th>
<th data-options="field:'Level',width:120,align:'center'">学历</th>
<th data-options="field:'FreshMajorName',width:150,align:'center'">专业名称</th>
<th data-options="field:'FreshDepartmentName',width:150,align:'center'">学院名称</th>
<th data-options="field:'TelNum',width:150,align:'center'">联系方式</th>
<th data-options="field:'strCheckIn',width:120,align:'center'">是否报道</th>
</tr>
</thead>
</table>
</div> </body>
controller代码分享:
<span style="font-size:18px;">#region 导出数据Excel --李卫中--2016年1月5日21:00:10
/// <summary>
/// 导出数据
/// </summary>
/// <param name="strlike"></param>
/// <returns></returns>
public ActionResult ExportExcel(string strlike) {
//获取前台界面容量
int pageSize = Request["rows"] == null ? 10 : int.Parse(Request["rows"]);
//获取前台界面当前页
int pageIndex = Request["page"] == null ? 1 : int.Parse(Request["page"]);
//定义总数,接收后台记录数目
int total;
List<FreshStudentViewModel> stuList = new List<FreshStudentViewModel>(); //执行模糊查询
if (strlike == "" || strlike == null)
{
stuList = stuService.ExportAllStu();
}
else {
stuList = stuService.ExportStu(strlike);
}
//给Excel导出里面添加表头
Hashtable headnames = new Hashtable(); headnames.Add("Score", "分数");
headnames.Add("Level", "学历");
headnames.Add("FreshMajorName", "专业名称");
headnames.Add("StudentCode", "学号");
headnames.Add("Name", "姓名");
headnames.Add("strSex", "性别");
headnames.Add("FreshDepartmentName", "学院名称");
headnames.Add("TelNum", "联系方式");
headnames.Add("strCheckIn", "是否报道"); //导出新生报表信息
return File(ExportManager.ExportExcel(stuList, headnames), "application/vnd.ms-excel", "新生报表.xls");
}
#endregion</span>Js方法分享:
<span style="font-size:18px;">function Export() {
var strlike = $("#txtSearch").val();
window.location.href = "/FreshStudent/ExportExcel?strlike=" + strlike; }</span>然后,我们的后台方法就不再累述了,就是从数据库中查询得到的数据集合,返回之后有我们的controller来接收。
效果展示:
遗留问题:导出的数据表头顺序发生错乱,请关注本篇博客后续解决方案!
小结:
这个方法其实是很简单的,但是其中有一个地方难住了我大约有一个小时,就是通过点击我们用controller来获取id="txtSearch"的值,这个在很多人开来很简单,其实对我来说也是很简单,等我写出这个方法后发现,总结。自己动手的机会还是太少了,以至于有些地方想不到,我们有句话叫“不怕不知道,就怕不知道”,我们不是不会,是总也想不到。这比我们想到了不会要严重得多。所以我们要把握好每一次我们遇到困难的机会,每一个机会都会带给我们一点收获,一些改变。
加油! 少(sao)年(nian)!
【项目总结】之——导出Excel的更多相关文章
- 【angularjs】pc端使用angular搭建项目,实现导出excel功能
此为简单demo. <!DOCTYPE html> <html ng-app="myApp"> <head> <meta charset= ...
- 项目笔记:导出Excel功能
1.前台这块: var ids=""; $.post("${basePath}/assets/unRegDeviceAction_getDeviceIds.do" ...
- 项目笔记:导出Excel功能分sheet页插入数据
导出Excel功能分sheet页处理数据: /*导出EXCEL*/ public void createExcel() { log.info("导出Excel功能已经启动-BEGIN&quo ...
- vue项目,前端导出excel
今天研究一下前端如何导出excel,边查边实践,边记录 1.安装依赖库 xlsx:这是一个功能强大的excel处理库,但是上手难度也很大,还涉及不少二进制的东西 file-saver:ES5新增了相关 ...
- Springboot+vue前后端分离项目,poi导出excel提供用户下载的解决方案
因为我们做的是前后端分离项目 无法采用response.write直接将文件流写出 我们采用阿里云oss 进行保存 再返回的结果对象里面保存我们的文件地址 废话不多说,上代码 Springboot 第 ...
- 项目笔记:导出Excel功能设置导出数据样式
/** * 导出-新导出 * * @return * @throws IOException */ @OperateLogAnn(type = OperateEnum.EXPORT, hibInter ...
- vue项目实现表格导出excel表格
第一:安装依赖 npm install -S file-saver xlsx npm install -D script-loader 第二:在目录里新建excel文件夹 在excel文件夹里新建两个 ...
- jxl导出Excel文件
一.java项目实现读取Excel文件和导出Excel文件 实现读取和导出Excel文件的代码: package servlet; import java.io.FileInputStream; im ...
- C# 使用Epplus导出Excel [1]:导出固定列数据
C# 使用Epplus导出Excel [1]:导出固定列数据 C# 使用Epplus导出Excel [2]:导出动态列数据 C# 使用Epplus导出Excel [3]:合并列连续相同数据 C# 使用 ...
- NPOI导入导出EXCEL通用类,供参考,可直接使用在WinForm项目中
以下是NPOI导入导出EXCEL通用类,是在别人的代码上进行优化的,兼容xls与xlsx文件格式,供参考,可直接使用在WinForm项目中,由于XSSFWorkbook类型的Write方法限制,Wri ...
随机推荐
- C++实现VPN工具之常用API函数
RAS是Remote Access Service的缩写,意为:远程访问服务,主要用来配置企业的远程用户对企业内部网络访问,包括拨号访问和vpn方式.微软的所有Windows平台中都有RAS客户机,它 ...
- hdu 1556.Color the ball 解题报告
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1556 题目意思:有 n 个气球从左到右排成一排,编号依次为1,2,3,...,n.给出 n 对 a, ...
- cordova android platform cordova build 遇到的问题
版权声明:本文为博主原创文章,未经博主允许不得转载. 一.下载gradle-2.2.1-all.zip不成功,一直在下载,卡在这个downloading http://services.gradle. ...
- 【leetcode】Minimum Depth of Binary Tree (easy)
Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shor ...
- 【leetcode】Plus One (easy)
Given a non-negative number represented as an array of digits, plus one to the number. The digits ar ...
- 【matlab】libsvm-3.18安装与使用
安装 1. 在http://www.csie.ntu.edu.tw/~cjlin/ 中下载libsvm 2. 按照http://zjhello123.blog.163.com/blog/static/ ...
- 51nod 1099 任务执行顺序 (贪心算法)
题目:传送门. 题意:中文题. 题解:r[i]-o[i]值大的先进行.反证法:如果大的后进行,会导致空间增大,所以一定大的是先进行. #include <iostream> #includ ...
- cocos2d-x 第二篇 HelloWorld的流程
这篇博客主要是带领大家一起了解整个游戏的执行过程,其中涉及的一些譬如导演,场景,层之类的概念将会在后面讲解. 看main函数的区别: #import <UIKit/UIKit.h> // ...
- php抽象工厂模式的研究
上一节理解了工厂模式.其代码原理如下: <?php abstract class ApptEncoder{ abstract function encode(); } class BloggsA ...
- 瀑布流图片自动式 masonry
<script type="text/javascript" src="<?php echo FRONT_PUBLIC;?>js/jquery-1.8. ...