gpt4 book ai didi

ios - UIWebView如何检测和处理HTTP错误码?

转载 作者:IT王子 更新时间:2023-10-29 08:17:05 28 4
gpt4 key购买 nike

我想在收到 HTTP 错误 404 等时通知用户。我怎样才能检测到?我已经尝试实现

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error

但是当我收到 404 错误时它没有被调用。

最佳答案

我的实现灵感来自 Radu Simionescu 的回应:

- (void)webViewDidFinishLoad:(UIWebView *)webView {
NSCachedURLResponse *urlResponse = [[NSURLCache sharedURLCache] cachedResponseForRequest:webView.request];
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*) urlResponse.response;
NSInteger statusCode = httpResponse.statusCode;
if (statusCode > 399) {
NSError *error = [NSError errorWithDomain:@"HTTP Error" code:httpResponse.statusCode userInfo:@{@"response":httpResponse}];
// Forward the error to webView:didFailLoadWithError: or other
}
else {
// No HTTP error
}
}

它管理 HTTP 客户端错误 (4xx) 和 HTTP 服务器错误 (5xx)。

请注意,如果响应未被缓存,cachedResponseForRequest 将返回 nil,在这种情况下,statusCode 被分配为 0,并且响应被认为是无错误的.

关于ios - UIWebView如何检测和处理HTTP错误码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2236407/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com