[NSURLConnection sendAsynchronousRequest:request
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *error)
{
NSDictionary * dictionary = nil;
NSError * returnError = nil;
NSString * errorCode = nil;
NSString * errorText = nil;
NSInteger newErrorCode = 0;
if([data length] >= 1) {
dictionary = [NSJSONSerialization JSONObjectWithData: data options: 0 error: nil];
}
if(dictionary == nil) {
newErrorCode = -1;
errorText = @"There was an unexpected error.";
NSMutableDictionary* details = [NSMutableDictionary dictionary];
[details setValue: errorText forKey: NSLocalizedDescriptionKey];
returnError = [NSError errorWithDomain: AppErrorDomain code: newErrorCode userInfo: details];
responseHandler(nil, returnError);
return;
}
NSInteger statusCode = [(NSHTTPURLResponse *)response statusCode];
if(statusCode != 200)
{
if(dictionary != nil) {
if([dictionary objectForKey: @"error_code"] != nil) {
errorCode = [dictionary objectForKey: @"error_code"];
}
if([dictionary objectForKey: @"error_description"] != nil) {
errorText = [dictionary objectForKey: @"error_description"];
}
}
if(errorCode == nil)
{
newErrorCode = UnexpectedError;
errorText = NSLocalizedString(@"There was an unexpected error.", @"There was an unexpected error.");
}
else {
newErrorCode = [errorCode intValue];
}
NSMutableDictionary* details = [NSMutableDictionary dictionary];
[details setValue: errorText forKey: NSLocalizedDescriptionKey];
returnError = [NSError errorWithDomain: APPErrorDomain code: newErrorCode userInfo: details];
}
responseHandler(dictionary, returnError);
return;
}];
在上面的异步网络调用中,我检查状态代码是否不是200,并假设这是一个错误。这是在IOS中处理网络呼叫中的错误/数据处理的正确方法吗?
如果http状态代码不是200,我们是否可以始终假设异步请求中的NSError始终为非nill,如果为200则为nill
答案 0 :(得分:0)
据我了解,如果您的NSURLConnection
返回错误,则表示未收到服务器的响应。
如果服务器发送其响应,无论HTTP代码是什么,NSUrlConnection
都不会给您任何错误(返回的错误将为nil)。
实际上,NSURLError.h
列出了与NSURLConnection相关的所有错误,例如:
NSURLErrorTimedOut
NSURLErrorCannotConnectToHost
NSURLErrorNetworkConnectionLost
NSURLErrorNotConnectedToInternet
因此,您可以在通过网络电话收到的NSError
对象中找到这种错误。
相反,如果您有HTTP错误,这意味着至少可以访问服务器,它会回复等等。
您还可以在网络分层体系结构的上下文中看到这一点,其中HTTP是一种应用程序协议,HTTP错误只在该级别具有意义。
另一方面,NSURLConnection
在传输级别工作,低于应用程序级别。因此,应用程序级别的错误对它没有任何意义,只是从一端透明地“传输”到另一端。