最近做公司的项目,使用AFNetworking请求接口,频繁出现 Domain=NSURLErrorDomain Code=-1005 “网络连接已中断, 这个错误。
开始以为是自己写错了参数,或者网络不好,但是检查后都排除了 , 并且这个错误不是一定的,时好时坏。
在网上查阅不少同类型的错误,找到了一个靠谱的答案:
http://blog.sina.com.cn/s/blog_12ec09c9c0102wxj8.html
iOS 频繁出现 Error Domain=NSURLErrorDomain Code=-1005 “The networ
(2017-08-23 13:04:56)![](http://upload-images.jianshu.io/upload_images/1433510-9b48ce0f9c4dd998.gif?imageMogr2/auto-orient/strip)转载*▼*
分类: [iOS技术](http://blog.sina.com.cn/s/articlelist_5079342236_1_1.html)
解决办法:服务端修改KeepAliveTimeout参数为60s(仅作参考),我们的项目中是这样改的,此后再也没出现此错误。参考链接:[http://stackoverflow.com/questions/25372318/error-domain-nsurlerrordomain-code-1005-the-network-connection-was-lost/25996971#25996971](http://stackoverflow.com/questions/25372318/error-domain-nsurlerrordomain-code-1005-the-network-connection-was-lost/25996971#25996971)
应该是请求还没有得到回应,连接就被断开了,但是我们请求不到接口。
可是当我把这个参数告诉后台让他修改一下的时候,坑爹的地方来了 , 后台说他不会,说没有这个参数,坑 。因为我们这个应用是一个局域网应用 , 后台服务是后台用QT开发的, 我在网上也查了一下,确实不好修改,后台吭哧吭哧半天,也没找到解决方案 , 没办法,只能自己动手了。
我的解决方案是 :接口返回-1005的时候,重新请求接口 , (也是参考网上的解决方法)
下面是封装的AFNetWorking接口:
@interface XYNetworkingManager ()
//记录code为-1005连接的请求次数
//{key - method ,value - faildcount}
@property (nonatomic, strong) NSMutableDictionary *code_1005_method_count_dic;
@end
//请求方法
-(void)PostWith_URL:(NSString *)url Param:(NSDictionary *)dic Method:(NSString *)method Timeout:(NSInteger)timeout Finsh:(XYNetBlock)Block
{
//签名
NSDictionary *PostDic = [XYSignManager signXinyiWithDic:dic method:method];
self.manager.requestSerializer.timeoutInterval = timeout;
[self.manager POST:url parameters:tempDic progress:^(NSProgress * _Nonnull uploadProgress) {
} success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
if (responseObject == nil) {
NSString *result = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
XYLog(@"解析失败:%@",result);
}
NSString *resStr = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
NSDictionary *dic = [resStr mj_JSONObject];
Block(YES,dic);
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
XYLog(@"错误信息:%@",error);
if (error.code == -1005) {
XYLog(@"等待5S将重新请求任务");
//这是定义的一个字典,用来记录请求错误的的接口名以及错误的次数
self.code_1005_method_count_dic = [[NSMutableDictionary alloc] init];
[self.code_1005_method_count_dic setObject:@(1) forKey:method];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
dispatch_group_t downloadGroup = dispatch_group_create();
dispatch_group_enter(downloadGroup);
dispatch_group_wait(downloadGroup, dispatch_time(DISPATCH_TIME_NOW, 5000000000)); // Wait 5 seconds before trying again.
dispatch_group_leave(downloadGroup);
dispatch_async(dispatch_get_main_queue(), ^{
//重新请求的方法
[self rePostWith_URL:url Param:dic Method:method Timeout:15 Finsh:^(BOOL isSuccess, NSDictionary *responseDic) {
if (isSuccess) {
Block(YES,responseDic);
}
else
{
Block(NO,nil);
}
}];
});
});
}
else
{
Block(NO,nil);
}
}];
}
// -1005重新请求
-(void)rePostWith_URL:(NSString *)url Param:(NSDictionary *)dic Method:(NSString *)method Timeout:(NSInteger)timeout Finsh:(XYNetBlock)Block
{
XYLog(@"任务重新请求");
int recount = [self.code_1005_method_count_dic[method] intValue];
recount++;
[self.code_1005_method_count_dic setObject:@(recount) forKey:method];
//签名
NSDictionary *PostDic = [XYSignManager signXinyiWithDic:dic method:method];
self.manager.requestSerializer.timeoutInterval = timeout;
[self.manager POST:url parameters:PostDic progress:^(NSProgress * _Nonnull uploadProgress) {
} success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
XYLog(@"重新请求成功");
NSString *resStr = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
NSDictionary *dic = [resStr mj_JSONObject];
Block(YES,dic);
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
if (error.code == -1005) {
int count = [self.code_1005_method_count_dic[method] intValue];
if (count >= 5) {
XYLog(@"重新请求超过限制,停止请求");
Block(NO,nil);
return ;
}
else
{
[self rePostWith_URL:url Param:dic Method:method Timeout:15 Finsh:^(BOOL isSuccess, NSDictionary *responseDic) {
if (isSuccess) {
Block(YES,responseDic);
}
else
{
Block(NO,nil);
}
}];
//return ;
}
}
else
{
XYLog(@"重新请求失败");
Block(NO,nil);
}
}];
}
思路就是遇到 -1005 这个错误的时候,记录下来,5S之后重新请求一下这个接口,最多会请求5次 , 如果5次请求都失败就不再请求了 , 防止死循环。
改成这样之后就解决问题了 。
参考链接: