异步NSURLConnection有时无法到达服务器端

时间:2013-05-16 09:36:48

标签: ios caching asynchronous nsurlconnection

我已经阅读了所有类似的问题,但没有一个答案适合我。那么让我向你解释一下我的问题: 我正在使用 NSURLConnection 向我的后端发送异步GET请求。我有时会使用正确的响应,但大部分时间我从GET请求中得到最后一次获取的结果(所以我认为它必须是URL缓存)。

这是我创建和发送网址请求的代码:

    NSMutableURLRequest *URLRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString: URL] cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData timeoutInterval:kRequestTimeOut];
[URLRequest setHTTPMethod: @"GET"];

NSOperationQueue *queue = [[NSOperationQueue alloc] init];

if ([NSURLConnection canHandleRequest:URLRequest]) {
    [NSURLConnection sendAsynchronousRequest: URLRequest
                                       queue: queue
                           completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
        [queue release];

        IPBetaLog(@"RESPONSE FROM %@: %@",URL,[[[NSString alloc] initWithData: data encoding:NSUTF8StringEncoding] autorelease]);
        IPBetaLog(@"RESPONSE CODE: %i",[(NSHTTPURLResponse*) response statusCode]);

        if ([data length] > 0) {
            int responseCode = 0;
            if ([response isKindOfClass: [NSHTTPURLResponse class]]) {
                responseCode = [(NSHTTPURLResponse*) response statusCode];

                IPBetaLog(@"RESPONSE CODE: %i",responseCode);

                switch (responseCode) {
                    case 200:
                        IPLog(@"Received message 'OPERATION_COMPLETED'");
                        break;
                    case 201:
                        IPLog(@"Received message 'OPERATION_COMPLETED'");
                        break;
                    case 202:
                        IPLog(@"Received message 'OPERATION_COMPLETED'");
                        break;
                    default:
                        return block(NO,nil,[self errorWithResponseCode: responseCode]);
                        break;
                }
            }

            NSError *jsonError = nil;
            NSDictionary *result = [NSJSONSerialization JSONObjectWithData: data options: NSJSONReadingMutableContainers error:&jsonError];

            NSLog(@"Result is %@", result);
            if (jsonError != nil) {
                NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
                [userInfo setObject: NSLocalizedString(@"JSON error", @"") forKey: NSLocalizedDescriptionKey];
                [userInfo setObject: jsonError.localizedFailureReason forKey: NSLocalizedFailureReasonErrorKey];
                return block(NO,nil,[NSError errorWithDomain: MyErrorDomain code: IPRequestErrorJSONError userInfo: userInfo]);
            } else {
                return block(YES,result,nil);
            }
        }
        else if ([data length] == 0 && error == nil) {
            NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
            [userInfo setObject: NSLocalizedString(@"Response is empty", @"") forKey: NSLocalizedDescriptionKey];
            return block(NO,nil,[NSError errorWithDomain: MyErrorDomain code: IPRequestErrorEmptyReponse userInfo: userInfo]);
        }
        else if (error != nil && error.code == 1001) {
            NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
            [userInfo setObject: NSLocalizedString(@"Request timed out", @"") forKey: NSLocalizedDescriptionKey];
            return block(NO,nil,[NSError errorWithDomain: MyErrorDomain code: IPRequestErrorTimedOut userInfo: userInfo]);
        }
        else if (error != nil) {
            return block(NO,nil,error);
        }
    }];
}
else {
    NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
    [userInfo setObject: NSLocalizedString(@"No Connection", @"Error message displayed when not connected to the Internet.") forKey: NSLocalizedDescriptionKey];
    return block(NO,nil,[NSError errorWithDomain: MyErrorDomain code: IPRequestErrorBadRequest userInfo: userInfo]);
}

我正在使用 cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData ,尝试了缓存策略的其他枚举,但问题仍然存在。 为了证明自己问题出在iOS中,我已成功从Android和Rest Console发送了相同的请求,并且每次都有效。

从我的后端来看,iOS的请求有时会出现,结果数据良好的情况就是如此。 例如:我向我的服务器端发送带有URL的GET请求,并且请求来了,我做出响应并且它带有响应数据到达iOS。我向同一个URL发送了另一个相同的GET请求,但是在服务器端没有请求,iOS从前一个请求中给出了相同的响应数据。我很少成功到达服务器端。真的不知道为什么。 iPhone和服务器端之间没有网络问题。

如果您有任何解决方案,请。 非常感谢你在我的问题上的时间。

2 个答案:

答案 0 :(得分:0)

您必须实现NSURLConnection委托和覆盖方法

- (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse {
   return nil;
}

返回零。将NSURLRequest缓存政策保留为NSURLRequestReloadIgnoringCacheData

答案 1 :(得分:0)

我通过在每个服务器请求的末尾添加查询参数来解决了这个问题。我忽略了服务器端的参数。参数是以毫秒为单位的时间戳,因此每个请求都会有所不同,并且不会涉及任何缓存。