iOS网络post请求详解手机开发

 
 
   //  post请求(代理方式)   
 
//    NSURL * url = [NSURL URLWithString:@"http://192.168.2.162/logo.php"]; 
 
//     
 
//    //通过URL建立请求对象 
 
//    NSMutableURLRequest * request = [NSMutableURLRequest requestWithURL:url]; 
 
//     
 
//    //设置请求方式(默认的是get方式) 
 
//    request.HTTPMethod = @"POST";//使用大写规范 
 
//     
 
//    //设置请求参数 
 
////    NSString * str = @"userName=jereh&pwd=123"; 
 
//    NSString * str = @"test2.rar"; 
 
//    request.HTTPBody = [str dataUsingEncoding:NSUTF8StringEncoding]; 
 
//     
 
//    //创建NSURLConnection 对象用来连接服务器并且发送请求 
 
//    NSURLConnection * conn = [[NSURLConnection alloc] initWithRequest:request delegate:self]; 
 
//    [conn start]; 
 
//    NSLog(@"%@", [NSThread currentThread]); 

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/5097.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论