AFNetworking application/x-www-form-urlencoded 数据请求方式


 

// 请求数据类实例化

AFHTTPSessionManager * manager = [AFHTTPSessionManager manager];

 

// 可变request实例化

  NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:str]];

// 设置 请求方法我POST 

    request.HTTPMethod = @"POST";

 

    // 设置请求头 的 Content-Type格式

    [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];

    NSString *postStr = [NSString stringWithFormat:@"content=%@",mdic];

    [request setHTTPBody:[postStr dataUsingEncoding:NSUTF8StringEncoding]];

    

   // 请求数据

    NSURLSessionDataTask * dataTask = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse * _Nonnull response, id  _Nullable responseObject, NSError * _Nullable error) {

        NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response;

        NSInteger responseStatusCode = [httpResponse statusCode];

//        NSLog(@"---------%@ %ld %@", httpResponse, (long)responseStatusCode ,responseObject);

        if (responseStatusCode == 200) {

            // 成功后的处理

//            NSLog(@"%@", responseObject);

//            NSLog(@"返回数据为!!!%@" , responseObject);

            successResponse(responseObject);

        }else {

            // 失败后的处理

            //                                                                  NSLog(@"%@", error);

            if(error.code==-1009){

                NSDictionary *codeDic=@{@"errCode":@"-1009",@"msg":@"网络未连接!"};

                successResponse(codeDic);

            }else{

                NSDictionary *codeDic=@{@"errCode":APPERROR,@"msg":@"未知错误!"};

                successResponse(codeDic);

            }

        }

    }];

    [dataTask resume];

 

 

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM