iOS网络post请求

2021-11-01 09:19:51 浏览数 (1)

代码语言:javascript复制
//  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]);
</pre> 

0 人点赞