原来的请求:
"&url=`${ctx}`/loanform/risk/loanItemRiskItemReport/main.ht?baseProductType=`${baseProductType}`"+"&itemReportId="+itemReportId
修改后:
原因:请求地址拼接时,会判断name为url的属性是否为空,用&去拼接itemReportId时,&后续的key跟value都不属于url的,所以&需要用url编码转义。(&转移为%26)