langu0823 发表于 2013-4-2 13:38:21

controller持续同时运行多个脚本报错问题

如果两个脚本中都有:
        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

我想知道取回的值是不是放在同一个存储空间中,导致后获取的值替换之前的值。

luzhijj@yahoo 发表于 2013-4-3 09:29:17

你检查一下 "LB=body id=\"",   "RB=\" style", 有可能是这两个的问题。
页: [1]
查看完整版本: controller持续同时运行多个脚本报错问题