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 = @"\r\n"; 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; }

 

 

 

 

转载于:https://www.cnblogs.com/allanliu/p/4225495.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值