傳送JSON資料到伺服器

zhYx__發表於2017-10-11
  • 方案一 : 把JSON格式的字串序列化成JSON的二進位制
#pragma 方案一 : 把JSON格式的字串序列化成JSON的二進位制
- (void)POSTJSON_01
{
    NSString *jsonStr = @"{\"name\":\"大發明家\"}";

    // 把JSON格式的字串序列化成JSON的二進位制
    NSData *jsonData = [jsonStr dataUsingEncoding:NSUTF8StringEncoding];
    [self postJsonWith:jsonData];
}
  • 方案二 : 把字典序列化成JSON格式的二進位制
#pragma 方案二 : 把字典序列化成JSON格式的二進位制
- (void)POSTJSON_02
{
    NSDictionary *dict = [NSDictionary dictionaryWithObject:@"亞索" forKey:@"name"];

    // 把字典序列化成JSON格式的二進位制
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dict options:0 error:NULL];
    [self postJsonWith:jsonData];
}
  • 方案三 : 把陣列序列化成JSON格式的二進位制
#pragma 方案三 : 把陣列序列化成JSON格式的二進位制
- (void)POSTJSON_03
{
    NSDictionary *dict1 = [NSDictionary dictionaryWithObject:@"牛頭" forKey:@"name"];
    NSDictionary *dict2 = [NSDictionary dictionaryWithObject:@"石頭人" forKey:@"name"];
    NSArray *arr = @[dict1,dict2];

    // 把陣列序列化成JSON格式的二進位制
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:arr options:0 error:NULL];
    [self postJsonWith:jsonData];
}

傳送json資料到伺服器的主方法,傳入json資料的二進位制

#pragma 傳送json資料到伺服器的主方法,傳入json資料的二進位制
- (void)postJsonWith:(NSData *)jsonData
{
    // URL
    NSURL *URL = [NSURL URLWithString:@"http://localhost/php/upload/postjson.php"];
    // 請求
    NSMutableURLRequest *requestM = [NSMutableURLRequest requestWithURL:URL];
    // 設定請求方法
    requestM.HTTPMethod = @"POST";
    // 設定請求體
    requestM.HTTPBody = jsonData;

    // 傳送請求
    [[[NSURLSession sharedSession] dataTaskWithRequest:requestM completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
        // 處理響應
        if (error == nil && data != nil) {

            // 反序列化
            NSString *str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
            NSLog(@"%@",str);

        } else {
            NSLog(@"%@",error);
        }
    }] resume];
}

相關文章