LR中如何循环取值到参数中
下面是我的ACTION,我想PID参数取值为1到10随机取。现在只能取10 ,其他取不到,不知道那出现问题。Action()
{
int i;
char str;
web_find("web_find",
"What=意见反馈",
LAST);
for(i=0;i<=3;i++)
{
itoa(i,str,10);
sprintf(str,"%d", i);
lr_save_string(str,"pid");
lr_output_message("pid=%s",lr_eval_string("{pid}"));
}
web_url("ssearch_2",
"URL=http://gouwu.zhou.com/ssearch?a=1&pid={pid}",
"Resource=0",
"RecContentType=text/html",
"Referer=http://gouwu.zhou.com/ssearch?w=%CA%D6%BB%FA&c=-1&st=15",
"Snapshot=t107.inf",
"Mode=HTML",
EXTRARES,
LAST);
lr_output_message("apid2");
return 0;
} 有木有人帮忙一下 没人知道吗。我现在pid,可以循环,但是取不到值 用得着自己写代码这么麻烦吗?
参数化里面不是有Random Number的选项?
看了你上面的代码没明白你到底想做什么
页:
[1]