zoukankan      html  css  js  c++  java
  • iOS开发网络篇—发送json数据给服务器以及多值参数

    iOS开发网络篇—发送json数据给服务器以及多值参数

    一、发送JSON数据给服务器

    发送JSON数据给服务器的步骤:

    (1)一定要使用POST请求

    (2)设置请求头

    (3)设置JSON数据为请求体

    代码示例:

    #import "YYViewController.h"
    
    @interface YYViewController ()
    
    @end
    
    @implementation YYViewController
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
    }
    
    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
        // 1.创建请求
        NSURL *url = [NSURL URLWithString:@"http://192.168.1.200:8080/MJServer/order"];
        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
        request.HTTPMethod = @"POST";
        
        // 2.设置请求头
        [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
        
        // 3.设置请求体
        NSDictionary *json = @{
                               @"order_id" : @"123",
                               @"user_id" : @"789",
                               @"shop" : @"Toll"
                               };
        
    //    NSData --> NSDictionary
        // NSDictionary --> NSData
        NSData *data = [NSJSONSerialization dataWithJSONObject:json options:NSJSONWritingPrettyPrinted error:nil];
        request.HTTPBody = data;
        
        // 4.发送请求
        [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
            NSLog(@"%d", data.length);
        }];
    }
    
    @end

    二、多值参数

    多值参数:一个参数对应多个值。

    如下面的请求参数:

    http://192.168.1.103:8080/MJServer/weather?place=北京&place=河南&place=湖南

    服务器的place属性是一个数组。因此用同一个参数不会把服务器的值覆盖。

  • 相关阅读:
    C# 排序
    第一个 Windows 应用程序
    WINDEF.h 变量类型
    几种流行的JS框架的选择
    SqlHelper 数据库操作类
    希望找人一起写个 Ajax 的封装
    C# 字符串处理一些方法
    SqlHelper 数据库操作类2
    JavaScript 字符串函数扩充
    JavaScript 字符串处理函数
  • 原文地址:https://www.cnblogs.com/yipingios/p/5562728.html
Copyright © 2011-2022 走看看