|
7#
楼主 |
发表于 2013-3-4 11:28:43
|
只看该作者
回复 3# msnshow
这样说明吧,比如:key中有5个数据
a
b
c
d
e
当进行稳定性时,发现lr传过的词出现了“ad”这样的,正常应该是“a”,“c”这样的词呀?
脚本如下:
#include "web_api.h"
Action()
{
lr_start_transaction("test");
lr_convert_string_encoding(lr_eval_string("{key}"),LR_ENC_SYSTEM_LOCALE, LR_ENC_UNICODE ,"str");
web_submit_data("Request",
"Action=http://10.16.129.59:8012/Request",
"Method=POST",
"Referer=",
"Snapshot=t3.inf",
"Mode=HTML",
ITEMDATA,
"Name=queryString","Value={str}",ENDITEM,
"Name=userIP","Value=",ENDITEM,
"Name=userArea","Value=",ENDITEM,
LAST);
lr_end_transaction("test", LR_AUTO);
return 0;
} |
|