zoukankan      html  css  js  c++  java
  • AFHTTPRequestOperationManager的post方法

    使用afnetworking2.0下,AFHTTPRequestOperationManager的post方法向服务器发送用户名和密码,参数名都正确且都已经赋值,为什么服务端接收到得数据是空的

    + (AFHTTPRequestOperationManager *)httpRequestOperationManager
    {
        NSURL *baseUrl = [NSURL URLWithString:@"http://192.168.1.234:8081"];
    
        AFHTTPRequestOperationManager *httpRequestOperationManager = [[AFHTTPRequestOperationManager alloc] initWithBaseURL:baseUrl];
    
        //httpRequestOperationManager.requestSerializer = [AFJSONRequestSerializer serializer];之前这里没有注释掉,服务端接收不到post过去的参数,注释掉之后正常,目前还不清楚是什么原因
    
        httpRequestOperationManager.responseSerializer = [AFJSONResponseSerializer serializer];
    
        httpRequestOperationManager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/html"];
    
        // 检测网络情况
        [httpRequestOperationManager.reachabilityManager setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) {
    
            switch (status) {
    
                case AFNetworkReachabilityStatusReachableViaWWAN:
                    NSLog(@"当前网络可用");
                    break;
                case AFNetworkReachabilityStatusReachableViaWiFi:
                    NSLog(@"当前网络可用");
                    break;
                case AFNetworkReachabilityStatusNotReachable:
                    NSLog(@"当前网络不可用");
                    break;
                default:
                    break;
            }
        }];
    
        // 开启检测
        [httpRequestOperationManager.reachabilityManager startMonitoring];
    
        return httpRequestOperationManager;
    }

    StackOverflow 封装方法

     
       

    The server is sending back a response with status code 500, which means that your server encountered an error while attempting to process the request. There doesn't appear to be anything wrong with how you're using AFNetworking, but the only way to tell is to debug things on the server side first.

    It has been a while since I solved this but maybe this could still help someone. Eventually, in my case, the upper level httpPOSTMultiPartRequestWithPath method did not cut and I needed more flexibility in the message structure (for instance, setting custom boundaries). I ended up using the HTTPRequestOperationWithRequest method and created the URLrequest manually.

    -(void)httpPOSTmultipartContentWithPath:(NSString*)path Parameters:(NSDictionary*)parameters Body:(NSData*)body Completion:(APICompletionBlock)apiComp{
    
        NSURL *pathURL = [NSURL URLWithString:path];
        NSURLRequest *request = [self POSTRequestWithURL:pathURL DataDictionary:parameters andBody:body];
    
        AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithRequest:request
                                                                          success:^(AFHTTPRequestOperation *operation, id responseObject) {
                                                                              apiComp(responseObject,nil);
                                                                          } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                                                                              apiComp(nil,error);
                                                                          }];
    
        [operation start];
    }
    
    - (NSMutableURLRequest *)POSTRequestWithURL:(NSURL *)url DataDictionary:(NSDictionary *)dictionary andBody:(NSData*)body
    {
    
        // Create a POST request
        NSMutableURLRequest *myMedRequest = [NSMutableURLRequest requestWithURL:url];
        [myMedRequest setHTTPMethod:@"POST"];
    
        // Add HTTP header info
    
        NSString *boundary = @"*****";
        NSString *lineEnd = @"
    ";
        NSString *twoHyphens = @"--";
        [myMedRequest addValue:[NSString stringWithFormat:@"multipart/form-data;boundary= %@", boundary] forHTTPHeaderField:@"Content-Type"];
    
        //create HTTP Body
        NSMutableData *POSTBody = [NSMutableData data];
        [POSTBody appendData:[[NSString stringWithFormat:@"boundary=%@%@%@",twoHyphens,boundary,lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"Content-Type:multipart/related;type=application/json;boundary=%@%@%@%@",twoHyphens,twoHyphens,boundary,lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"Content-Id:jsonTemp%@",lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name="json"%@%@", lineEnd,lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        //add JSON dictionary with request inforamtion
        [POSTBody appendData:[[NSString stringWithFormat:@"%@%@",dictionary
         ,lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
    
        [POSTBody appendData:[lineEnd dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"%@%@%@",twoHyphens,boundary,lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"Content-Type:image/jpg"] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"%@",lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"Content-Id:%@",@"profile.jpg"] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"%@",lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"%@",lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
    
        // Add image data
        [POSTBody appendData:body];
    
    
        // Add the closing -- to the POST Form
        [POSTBody appendData:[[NSString stringWithFormat:@"%@",lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
        [POSTBody appendData:[[NSString stringWithFormat:@"%@%@%@%@",twoHyphens,boundary,twoHyphens, lineEnd] dataUsingEncoding:NSUTF8StringEncoding]];
    
    
        // Add the body to the myMedRequest & return
        [myMedRequest setHTTPBody:POSTBody];
        return myMedRequest;
    }
  • 相关阅读:
    xml转义字符在mybatis动态sql中的使用
    jdbc类型与java类型
    aop日志(记录方法调用日志)
    mysql数据库关联查询【lert join】常见使用
    maven项目基本配置
    mapper文件的参数传入与获取
    idea新建项目出现push rejected如何解决
    快速从2个List集合中找出相同/不同元素
    Windows 环境下安装RocketMQ
    RabbitMQ java客户端集成 Spring 开发环境
  • 原文地址:https://www.cnblogs.com/allanliu/p/4225495.html
Copyright © 2011-2022 走看看