我的项目看起来像社交网络,我必须向用户显示带有评论、喜欢等的上传图像,以便我发出 HTTPRequest 来下载图像。有时响应是 404 错误。这意味着在服务器中找不到请求的图像。那么如何处理 404 错误。它可能会导致线程停止,因此不会下载更多图像。一旦收到 404 错误,它就会停止服务。如何跳过 404 错误并继续服务以从服务器下载更多图像。
if (_request.responseStatusCode != 200){
DLog(@"404 error");
//return;
}
else
{
UIApplication* app = [UIApplication sharedApplication];
app.networkActivityIndicatorVisible = NO;
// passing the response data to the corresponding function
}