|
如果两个脚本中都有:
web_reg_save_param_ex(
"ParamName=Parameter_1",
"LB=body id=\"",
"RB=\" style",
"Ordinal=all",
"SaveOffset=0",
"SaveLen=32",
SEARCH_FILTERS,
"Scope=Body",
"IgnoreRedirections=Yes",
"RequestUrl=*/login*",
LAST);
只是两个参数的名称不同;
这两个脚本同时在controller中持续运行,会不会报:Action.c(35): Error -35061: No match found for the requested parameter "Parameter_1". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 1024 bytes, use web_set_max_html_param_len to increase the parameter size
我想知道取回的值是不是放在同一个存储空间中,导致后获取的值替换之前的值。 |
|