欢迎来到代码驿站!

iOS代码

当前位置:首页 > 移动开发 > iOS代码

IOS用AFN发送字符串形式的Json数据给服务器实例

时间:2020-10-10 11:46:45|栏目:iOS代码|点击:

每个人遇到后台的需求不一样,我只能写出自己目前遇到的需求和做法,我的后台是需要一个Json的key,对应一个字符串类型的字典,后台要求的是带双引号和冒号的字典,所以就拼接了一下

AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
  // 发送post请求
//  manager.responseSerializer = [AFJSONResponseSerializer serializer];
  manager.responseSerializer = [AFJSONResponseSerializer serializer];
  manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/html"];
  //
  manager.requestSerializer=[AFHTTPRequestSerializer serializer];
  NSDictionary *json = [NSDictionary dictionary];
   NSString *str = [NSString stringWithFormat:@"{\"city\":\"%@\",\"country\":\"%@\",\"headimgurl\":\"%@\",\"language\":\"%@\",\"openid\":\"%@\",\"province\":\"%@\",\"sex\":%@,\"unionid\":\"%@\",\"userName\":\"%@\"}",self.userInfoDict[@"city"],self.userInfoDict[@"country"],self.userInfoDict[@"headimgurl"],self.userInfoDict[@"language"],self.userInfoDict[@"openid"],self.userInfoDict[@"province"],self.userInfoDict[@"sex"],self.userInfoDict[@"unionid"],self.userInfoDict[@"nickname"]];
  json = @{
//      @"city":self.userInfoDict[@"city"],
//      @"country":self.userInfoDict[@"country"],
//      @"headimgurl":self.userInfoDict[@"headimgurl"],
//      @"language":self.userInfoDict[@"language"],
//      @"openid":self.userInfoDict[@"openid"],
//      @"province":self.userInfoDict[@"province"],
//      @"sex":self.userInfoDict[@"sex"],
//      @"unionid":self.userInfoDict[@"unionid"],
//      @"userName":self.userInfoDict[@"nickname"],
      @"json":str,
//      @"json":@"json"
      
          };
  NSLog(@"post调试%@",json);
  NSString *URLStr = @"http://10.62.16.247:8080/LoginServlet.bmh";
  
  [manager POST:URLStr parameters:json progress:^(NSProgress * _Nonnull uploadProgress) {
    
  } success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
    NSString *str = responseObject;
    NSLog(@"post回调====%@",str);
    NSLog(@"post成功");
  } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
    NSLog(@"post失败");
  }];

上一篇:iOS11 SectionHeader 胡乱移动且滑动时出现重复内容的解决方法

栏    目:iOS代码

下一篇:iOS界面跳转时导航栏和tabBar的隐藏与显示功能

本文标题:IOS用AFN发送字符串形式的Json数据给服务器实例

本文地址:http://www.codeinn.net/misctech/9375.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有