1

我有一个 IdHTTP 组件,当我收到 HTTP 错误(例如 404)时,Indy 会显示一个消息框。我想处理这种“沉默”并阻止 Indy 显示这一点。

我还没有找到任何参数来关闭它。有任何想法吗?

4

1 回答 1

1

Indy 不显示消息框。它抛出异常。VCL/FMX 框架中有默认的异常处理程序,如果您的代码中没有捕获到异常,则会向用户显示一个消息框。因此,只需在代码中捕获异常,例如:

try
{
    IdHTTP1->Get(...);
}
catch (const Exception &)
{
    // do something...
}

如果您需要更好地控制异常过滤,所有 Indy 特定的异常都派生自EIdException,并且有许多后代(如EIdHTTPProtocolException),例如:

try
{
    IdHTTP1->Get(...);
}
catch (const EIdHTTPProtocolException &)
{
    // an HTTP error occured, do something...
    // details about the HTTP error are in the exception object
}
catch (const EIdException &)
{
    // a non-HTTP Indy error occured, do something else...
}
catch (const Exception &)
{
    // some other error occured, do something else...
}
于 2015-03-10T19:22:57.570 回答