iOS開發網路篇—傳送json資料給伺服器以及多值引數

文頂頂水水發表於2014-09-01

iOS開發網路篇—傳送json資料給伺服器以及多值引數

一、傳送JSON資料給伺服器

傳送JSON資料給伺服器的步驟:

(1)一定要使用POST請求

(2)設定請求頭

(3)設定JSON資料為請求體

程式碼示例:

 1 #import "YYViewController.h"
 2 
 3 @interface YYViewController ()
 4 
 5 @end
 6 
 7 @implementation YYViewController
 8 
 9 - (void)viewDidLoad
10 {
11     [super viewDidLoad];
12 }
13 
14 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
15 {
16     // 1.建立請求
17     NSURL *url = [NSURL URLWithString:@"http://192.168.1.200:8080/MJServer/order"];
18     NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
19     request.HTTPMethod = @"POST";
20     
21     // 2.設定請求頭
22     [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
23     
24     // 3.設定請求體
25     NSDictionary *json = @{
26                            @"order_id" : @"123",
27                            @"user_id" : @"789",
28                            @"shop" : @"Toll"
29                            };
30     
31 //    NSData --> NSDictionary
32     // NSDictionary --> NSData
33     NSData *data = [NSJSONSerialization dataWithJSONObject:json options:NSJSONWritingPrettyPrinted error:nil];
34     request.HTTPBody = data;
35     
36     // 4.傳送請求
37     [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
38         NSLog(@"%d", data.length);
39     }];
40 }
41 
42 @end

 

二、多值引數

多值引數:一個引數對應多個值。

如下面的請求引數:

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

伺服器的place屬性是一個陣列。因此用同一個引數不會把伺服器的值覆蓋。


相關文章