$.ajax({
url : reportPathGlb , //reportPathGlb 是cpt的网址,
data:{'qsrq':qsrq},
cache : false,
async : true,
type : "POST",
dataType : 'json/xml/html',
success : function (result){
$("#div").html(result);
}
});
以上代码,如果ajax请求的是个html文件,div中就能正常显示,请求的是cpt,则报错:
XMLHttpRequest cannot load http://localhost:7002/WebReport/ReportServer?reportlet=fineReport%2FjxcReport.cpt. ,,,,,,
暂时解决:还是用form来提交,ajax是更底层的,暂不考虑。
编辑于 2017-8-8 09:39