ios中http的两种请求方法:get与post

   get主要负责查询,安全性低,操作方便;

   post安全性高,操作如下:

 

 NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];  
    //设置提交目的url  
    [request setURL:[NSURL URLWithString:kUserLoginCheckUrl]];  
    //设置提交方式为 POST  
    [request setHTTPMethod:@"POST"];  
    //设置http-header:Content-Type  
    //这里设置为 application/x-www-form-urlencoded ,如果设置为其它的,比如text/html;charset=utf-8,或者 text/html 等,都会出错。不知道什么原因。  
    [request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];  
    //设置http-header:Content-Length  
    [request setValue:postLength forHTTPHeaderField:@"Content-Length"];  
    //设置需要post提交的内容  
    [request setHTTPBody:postData];  
      
    //定义  
    NSHTTPURLResponse* urlResponse = nil;  
    NSError *error = [[NSError alloc] init];  
    //同步提交:POST提交并等待返回值(同步),返回值是NSData类型。  
    NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error]; 
这个基本就是完整的请求过程
 NSString *result = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];

转载于:https://www.cnblogs.com/xcy617/archive/2013/01/16/2862713.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值