AFNetWorking 在断网的情况下请求,没有给出请求失败的提示,或者超时也就是说不会回调 failure:^(AFHTTPRequestOperation *operation, NSError *error) { |
|
20分 |
断网失败也有回调的,有完整点的代码吗?
|
AFHTTPRequestSerializer * requestSerializer = [AFHTTPRequestSerializer serializer];
[requestSerializer setTimeoutInterval:20.0f]; request = [requestSerializer multipartFormRequestWithMethod:@”POST” URLString:urlString parameters:parameter constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {} error:nil]; AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; |