博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
发送json给服务器
阅读量:6582 次
发布时间:2019-06-24

本文共 1496 字,大约阅读时间需要 4 分钟。

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{    // 1.URL    NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/order"];        // 2.请求    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];        // 3.请求方法    request.HTTPMethod = @"POST";        // 4.设置请求体(请求参数)    // 创建一个描述订单信息的JSON数据    NSDictionary *orderInfo = @{                                @"shop_id" : @"1243324",                                @"shop_name" : @"啊哈哈哈",                                @"user_id" : @"899"                                };    NSData *json = [NSJSONSerialization dataWithJSONObject:orderInfo options:NSJSONWritingPrettyPrinted error:nil];    request.HTTPBody = json;        // 5.设置请求头:这次请求体的数据不再是普通的参数,而是一个JSON数据    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];        // 6.发送请求    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {        if (data == nil || connectionError) return;        NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];        NSString *error = dict[@"error"];        if (error) {            [MBProgressHUD showError:error];        } else {            NSString *success = dict[@"success"];            [MBProgressHUD showSuccess:success];        }    }];    }
 

  

转载于:https://www.cnblogs.com/seeworld/p/6006266.html

你可能感兴趣的文章
ACS 命令授权流程图
查看>>
Java SE02 Java语言基础:关键字,标识符,注释
查看>>
选择交换机和路由器的主要技能指标
查看>>
1.类和对象
查看>>
我的友情链接
查看>>
MySQL详解-----------数据库备份和还原
查看>>
总结XX网app中webapp常见的前端错误。
查看>>
Source Insight 3.5 快捷键大全
查看>>
Windows temp 用户等
查看>>
第五章 高级搜索
查看>>
F5基本操作
查看>>
SHELL训练营--day4--正则2AWK
查看>>
一、酷狗 歌词搜索 Indy TIdhttp
查看>>
linux网卡做bond的7种模式
查看>>
乔布斯给我遗留下的灵感!你想到了吗?
查看>>
配置ip地址
查看>>
php参数
查看>>
Remove Nth Node From End of List leetcode
查看>>
nc命令
查看>>
[Android] 年年有鱼手机主题
查看>>