|
在我的脚本里,如果下面的link不存在,则希望将程序推出当前循环,return -1,然后继续下一个操作,而不希望出现类似这样的erro:Action.c(79): Error -27995: Requested link ("Text=Cash (USD)") not found [MsgId: MERR-27995]
Action.c(79): web_link("cash") highest severity level was "ERROR", 0 body bytes, 0 header bytes
[MsgId: MMSG-26388]。
web_link("cash",
"Text=Cash (USD)",
LAST);
我的做法是在这个web_link之前,添加判断
status = web_link("cash",
"Text=Cash (USD)",
LAST);
lr_message("%d", status);
if (status == LR_FAIL) {
lr_error_message ( "Error at agreementID #%s, no Cash(USD) asset", lr_eval_string ( "{searchAggID}" ) );
return 0;
}
为什么不行呢? |
|