帆软报表和jeecg的进一步整合--ajax给后台传递map类型的参数

下面是页面代码:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@include file="/context/mytags.jsp"%>
<%
String deptIds = (String)request.getAttribute("departIds");String dic="t_s_depart";
if(!"".equals(deptIds)){dic="t_s_depart where ID in ("+deptIds+")";
}%>
<t:base type="jquery,easyui,tools,DatePicker"></t:base>
<html><head><title>FineReport Demo</title><script src = "webpage/xiaohaojiao/date.js"></script>    <script type="text/javascript">$(document).ready(function(){$("#dept").change(function(){$("#department").val($(this).val());});//给时间控件加上样式
        $("#dates").click(function(){WdatePicker({dateFmt:'yyyy-MM-dd'});});$("#datez").click(function(){WdatePicker({dateFmt:'yyyy-MM-dd'});});getFineReport();});function getFineReport() {var value="";var key="";var map = {};var str ="";map["url"]=window.frames[0].location.toString();$('.searchParams').each(function () {value = $(this).val().toString();key=$(this).attr("id");map[key] = value;//主要:map转json字符串放入data
            str = JSON.stringify(map); });$.ajax({type:"POST",url:"fineReportController.do?getFineUrl",data:{strMap:str}, success:function(data){var d = $.parseJSON($.parseJSON(data).msg)[0];//姓名name是真实姓名_工号拼出来的,例如:张赛梅_160707302X
                window.frames[0].location=encodeURI(encodeURI(d.fineUrl));}});}
</script></head><body>
<div style="height:50px;">开始时间:<input id="dates" class="searchParams Wdate" type="text" value="${dates}" />结束时间:<input id="datez" class="searchParams Wdate" type="text"  value="${datez}"/>部门:<t:dictSelect id="dept" field="dept" type="list" dictTable="<%=dic%>" dictField="departname" dictText="departname" defaultVal="" hasLabel="false"  title="部门" ></t:dictSelect>     <input id="department" class="searchParams" value="" type="hidden" />姓名:<input id="name" class="searchParams" value="" type="text" />     <a class="l-btn" onclick="getFineReport()" href="#"><span class="l-btn-left"><span class="l-btn-text icon-search l-btn-icon-left">查询</span></span></a>
</div><iframe id="reportFrame" width="100%" height="100%" src="${fineReport}" ></iframe></body>
</html>

下面是后台代码:

package com.jeecg.xiaohaojiao.controller;import java.net.URLDecoder;
import java.net.URLEncoder;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Validator;import org.apache.log4j.Logger;
import org.jeecgframework.core.common.controller.BaseController;
import org.jeecgframework.core.common.model.json.AjaxJson;
import org.jeecgframework.web.system.service.SystemService;
import org.jeecgframework.web.system.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;import com.jeecg.xiaohaojiao.service.XhjUserDepartServiceI;
import com.jeecg.xiaohaojiao.util.RoleUtil;import freemarker.template.SimpleDate;
import net.sf.json.JSONObject;/**   * @Title: Controller  * @Description: 帆软报表页面跳转action* @author liuf* @date 2017-10-02 10:49:19* @version V1.0   **/
@Controller
@RequestMapping("/fineReportController")
public class FineReportController extends BaseController{/*** Logger for this class*/private static final Logger logger = Logger.getLogger(FineReportController.class);//不同角色对应的部门idsprivate String departIds = "";@Autowiredprivate SystemService systemService;@Autowiredprivate UserService userService;@Autowiredprivate XhjUserDepartServiceI xhjUserDepartService;/*** 无查询条件帆软报表页面跳转方法* @param req* @return*/@RequestMapping(params = "goFineReport")public ModelAndView goFineReport(HttpServletRequest req) {String id = req.getParameter("id");String fineReportPath = "../WebReport/ReportServer?reportlet="+id+".cpt";req.setAttribute("fineReport", fineReportPath);return new ModelAndView("xiaohaojiao/fineReport");}/*** 有查询条件需要控制页面权限帆软报表页面跳转方法* @param req* @return* @throws ParseException */@RequestMapping(params = "goFineReportForParams")public ModelAndView goFineReportForParams(HttpServletRequest req) throws ParseException {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM");Date date = new Date();String beginTime = sd.format(date);String endTime = sdf.format(date);req.setAttribute("dates", beginTime+"-01");req.setAttribute("datez", endTime);try {departIds = RoleUtil.getDeptIds(req,systemService,userService,xhjUserDepartService);} catch (Exception e) {e.printStackTrace();}String id = req.getParameter("id");String fineReportPath = "../WebReport/ReportServer?reportlet="+id+".cpt";req.setAttribute("fineReport", fineReportPath);req.setAttribute("departIds", departIds);return new ModelAndView("xiaohaojiao/fineReportForParams");}/*** 页面点击查询的时候重新拼接的url,用于重新加载iframe* @param request* @param response* @return* @throws Exception*/@RequestMapping(params = "getFineUrl")@ResponseBodypublic AjaxJson getFineUrl(HttpServletRequest request, HttpServletResponse response) throws Exception{String fineUrl = "";AjaxJson j = new AjaxJson();Map<String,Object> map = new HashMap<String ,Object>();String strMap = request.getParameter("strMap");JSONObject jb = JSONObject.fromObject(strMap);Map filterMap = (Map)jb;fineUrl = ((String) filterMap.get("url")).split("&")[0];Iterator<String> iter = filterMap.keySet().iterator();while (iter.hasNext()) {String key = iter.next();String value = (String) filterMap.get(key);if (!"url".equals(key)) {fineUrl = fineUrl + "&" + key + "=" + (value==null?"":value); }               }map.put("fineUrl", fineUrl);net.sf.json.JSONArray jsonArray = net.sf.json.JSONArray.fromObject(map);j.setMsg(jsonArray.toString());return j;}
}

 

转载于:https://www.cnblogs.com/shuilangyizu/p/7788100.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390905.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

@Nullable 注解的用法

问题&#xff1a;Nullable 注解的用法 我看到java中的一些方法声明为: void foo(Nullable Object obj){…}在这里Nullable是什么意思?这是不是意味着输入可以为空? 没有这个注解&#xff0c;输入仍然可以是null&#xff0c;所以我猜这不是它的用法? 回答一 它清楚地说明…

WebLogic调用WebService提示Failed to localize、Failed to create WsdlDefinitionFeature

在本地Tomcat环境下调用WebService正常&#xff0c;但是部署到WebLogic环境中&#xff0c;则提示警告&#xff1a;[Failed to localize] MEX0008.PARSING_MDATA_FAILURE<SOAP_1_2 ......警告&#xff1a;[Failed to localize] MEX0008.PARSING_MDATA_FAILURE<SOAP_1_1 ..…

呼吁开放外网_服装数据集:呼吁采取行动

呼吁开放外网Getting a dataset with images is not easy if you want to use it for a course or a book. Yes, there are many datasets with images, but few of them are suitable for commercial or educational use.如果您想将其用于课程或书籍&#xff0c;则获取带有图像…

git push命令_Git Push命令解释

git push命令The git push command allows you to send (or push) the commits from your local branch in your local Git repository to the remote repository.git push命令允许您将提交(或推送 )从本地Git存储库中的本地分支发送到远程存储库。 To be able to push to you…

在Java里面使用Pairs或者二元组

问题&#xff1a;在Java里面使用Pairs或者二元组 在Java里面&#xff0c;我的Hashtable要用到一个元组结构。在Java里面&#xff0c;我可以使用的什么数据结构呢&#xff1f; Hashtable<Long, Tuple<Set<Long>,Set<Long>>> table ...回答一 我不认…

github 搜索技巧

1、关键词 指定开发语言 bitcoin language:javascript 2、关键词 stars 数量 forks 数量 bitcoin stars:>100 forks:>50

React JS 组件间沟通的一些方法

刚入门React可能会因为React的单向数据流的特性而遇到组件间沟通的麻烦&#xff0c;这篇文章主要就说一说如何解决组件间沟通的问题。 1.组件间的关系 1.1 父子组件 ReactJS中数据的流动是单向的&#xff0c;父组件的数据可以通过设置子组件的props传递数据给子组件。如果想让子…

数据可视化分析票房数据报告_票房收入分析和可视化

数据可视化分析票房数据报告Welcome back to my 100 Days of Data Science Challenge Journey. On day 4 and 5, I work on TMDB Box Office Prediction Dataset available on Kaggle.欢迎回到我的100天数据科学挑战之旅。 在第4天和第5天&#xff0c;我将研究Kaggle上提供的TM…

sql limit子句_SQL子句解释的位置:之间,之间,类似和其他示例

sql limit子句什么是SQL Where子句&#xff1f; (What is a SQL Where Clause?) WHERE子句(和/或IN &#xff0c; BETWEEN和LIKE ) (The WHERE Clause (and/or, IN , BETWEEN , and LIKE )) The WHERE clause is used to limit the number of rows returned.WHERE子句用…

在Java里面使用instanceof的性能影响

问题&#xff1a;在Java里面使用instanceof的性能影响 我正在写一个应用程序&#xff0c;其中一种设计方案包含了instanceof操作的大量使用。虽然我知道面向对象设计通常试图避免使用instanceof&#xff0c;但那是另一回事了&#xff0c;这个问题纯粹只是讨论与性能有关。我想…

Soot生成控制流图

1.将soot.jar文件复制到工程bin目录下&#xff1b;2.在cmd中执行如下命令java -cp soot-trunck.jar soot.tools.CFGViewer --soot-classpath .;"%JAVA_HOME%"\jre\lib\rt.jar com.wauoen.paper.classes.Activity其中&#xff0c;JAVA_HOME是jdk目录&#xff1b;com.w…

Centos 6.5安装MySQL-python

报错信息&#xff1a;Using cached MySQL-python-1.2.5.zip Complete output from command python setup.py egg_info: sh: mysql_config: command not found Traceback (most recent call last): File "<string>", line 1, in <module&g…

react 最佳实践_最佳React教程

react 最佳实践React is a JavaScript library for building user interfaces. It was voted the most loved in the “Frameworks, Libraries, and Other Technologies” category of Stack Overflow’s 2017 Developer Survey.React是一个用于构建用户界面JavaScript库。 在S…

先知模型 facebook_Facebook先知

先知模型 facebook什么是先知&#xff1f; (What is Prophet?) “Prophet” is an open-sourced library available on R or Python which helps users analyze and forecast time-series values released in 2017. With developers’ great efforts to make the time-series …

Java里面的静态代码块

问题&#xff1a;Java里面的静态代码块 I was looking over some code the other day and I came across: 前几天我在看一些代码时发现&#xff1a; static {... }我是c转来的&#xff0c;我不知道为啥要这样干。这个代码也编译成功了&#xff0c;没出错误。这里的"stat…

搭建Maven私服那点事

摘要&#xff1a;本文主要介绍在CentOS7.1下使用nexus3.6.0搭建maven私服&#xff0c;以及maven私服的使用&#xff08;将自己的Maven项目指定到私服地址、将第三方项目jar上传到私服供其他项目组使用&#xff09; 一、简介 Maven是一个采用纯Java编写的开源项目管理工具, Mave…

lee最短路算法_Lee算法的解释:迷宫运行并找到最短路径

lee最短路算法Lee算法是什么&#xff1f; (What is the Lee Algorithm?) The Lee algorithm is one possible solution for maze routing problems. It always gives an optimal solution, if one exists, but is slow and requires large memory for dense layout.Lee算法是迷…

gan训练失败_我尝试过(但失败了)使用GAN来创作艺术品,但这仍然值得。

gan训练失败This work borrows heavily from the Pytorch DCGAN Tutorial and the NVIDA paper on progressive GANs.这项工作大量借鉴了Pytorch DCGAN教程 和 有关渐进式GAN 的 NVIDA论文 。 One area of computer vision I’ve been wanting to explore are GANs. So when m…

怎么样实现对一个对象的深拷贝

问题&#xff1a;怎么样实现对一个对象的深拷贝 使用深拷贝的方法有点难实现啊。要保证原来的对象和克隆对象不是共享同一个引用的步骤是什么啊&#xff1f; 回答一 一种安全的方法是先序列化对象&#xff0c;然后反序列化。这保证了所有东西都是一个新的引用。 这里有一篇…

19.7 主动模式和被动模式 19.8 添加监控主机 19.9 添加自定义模板 19.10 处理图形中的乱码 19.11 自动发现...

2019独角兽企业重金招聘Python工程师标准>>> 19.7 主动模式和被动模式 • 主动或者被动是相对客户端来讲的 • 被动模式&#xff0c;服务端会主动连接客户端获取监控项目数据&#xff0c;客户端被动地接受连接&#xff0c;并把监控信息传递给服务端 服务端请求以后&…