报表知识库
我要提问

润乾报表填报刷新页面如何获取参数值

问题描述:

润乾报表report:html,有一个backAndRefresh属性,在刷新后,要传两个参数,这样写的,backAndRefresh=”/riskdb/riskoperation/dw_sysbaseinfo_xg.jsp?flag=1&censoft_catecode=

<%=censoft_catecode%>”,可是,dw_sysbaseinfo_xg.jsp,没有得到censoft_catecode的值,

在当前jsp中获得了这样一个参数:String censoft_catecode=request.getParameter(“censoft_catecode”);    

想把这个参数传给,刷新后的页面,所以在backAndRefresh属性中写了下面一段

backAndRefresh=“/riskdb/riskoperation/dw_sysbaseinfo_xg.jsp?flag=1&censoft_catecode=<%=censoft_catecode%>”,

可是,没有获得第二个. 

问题解决描述:

 第二个参数没有传递给刷新的页面,可以这样来实现:jsp上面定义个参数:String backUrl = “/riskdb/riskoperation/dw_sysbaseinfo_xg.jsp?flag=1&censoft_catecode=” + censoft_catecode; 然后在report:html ,写了backAndRefresh=”<%=backUrl%>”, 参数就都可以传过去