| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

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]);