2、帆软填报-后台接收web端或链接传过来的多个参数

前端:

"/ReportServer?reportlet=/clue/closingList.cpt&op=write&clueId=123&closeCaseBatchId=456"

后台:(注意:前后参数名要一致)

this.parameters = new Parameter[]{

    new Parameter("clueId"),

    new Parameter("closeCaseBatchId")

};

String clueId = this.parameters[0].getValue().toString();
String closeCaseBatchId = this.parameters[1].getValue().toString();

猜你喜欢

转载自blog.csdn.net/qq_28135179/article/details/80076483