本帖最后由 wzh_cf 于 2016-1-26 16:11 编辑 浏览器中直接输入模板网址能够正常显示。直接预览时地址:http://localhost:8090/WebReport/ReportServer?reportlet=WorkBook1.cpt&year=2015 但是把url嵌入到JSP页面,从页面预览时就报下面错误。求大神们指导 嵌入页面代码: //使用获取的参数值拼接出最终的url var reportURL = "http://localhost:8090/WebReport/ReportServer?reportlet=WorkBook1.cpt&year=2015"; //url中可能包含中文或特殊字符因此需要进行编码转换,注意需要先引入finereport.js reportURL = cjkEncode(reportURL); //将新的报表路径赋给报表所在iframe的src document.getElementById("reportFrame").src = reportURL; |