|
我有如下脚本:
web_custom_request("showOperation.htm_3",
"URL=https://hsse.hs.handsome.com.cn/se/support/showOperation.htm?wfid={NewParam}",
"Method=POST",
"Resource=1",
"RecContentType=application/json",
"Referer=https://hsse.hs.handsome.com.cn/se/portal/SupportPortal.htm?projectId=20090908",
"EncType=",
"Body=¤tProjectId=20090908¤tProjectName=机房设å\xA4\x87",
LAST);
web_custom_request("fetchProductVersionList.htm",
"URL=https://hsse.hs.handsome.com.cn/se/services/sys/fetchProductVersionList.htm",
"Method=POST",
"Resource=1",
"RecContentType=application/json",
"Referer=https://hsse.hs.handsome.com.cn/se/portal/SupportPortal.htm?projectId=20090908",
"EncType=application/x-www-form-urlencoded; charset=UTF-8",
"Body=param.productId=20090908¤tProjectId=20090908¤tProjectName=机房设å\xA4\x87",
LAST);
web_custom_request("fetchArtifactAttList.htm",
"URL=https://hsse.hs.handsome.com.cn/se/services/reqm/fetchArtifactAttList.htm",
"Method=POST",
"Resource=1",
"RecContentType=application/json",
"Referer=https://hsse.hs.handsome.com.cn/se/portal/SupportPortal.htm?projectId=20090908",
"EncType=application/x-www-form-urlencoded; charset=UTF-8",
"Body=param.artifactId={NewParam_1}¶m.preferredOrder=lastUpdateDttm¤tProjectId=20090908¤tProjectName=机房设å\xA4\x87",
LAST);
其中有两个参数,这两个是有关联的,并且可以从数据库中提取。我将他们参数化并且想让他们一一对应,可是不知道如何进行参数化的配置,是用ODBC么?怎么用?请各位大侠帮帮忙,急!! |
|