如果向服务器发送多值参数

Posted IOSyes

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果向服务器发送多值参数相关的知识,希望对你有一定的参考价值。

 1 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
 2 {
 3     // 1.URL
 4     NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/weather"];
 5     
 6     // 2.请求
 7     NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
 8     
 9     // 3.请求方法
10     request.HTTPMethod = @"POST";
11     
12     // 4.设置请求体(请求参数)
13     NSMutableString *param = [NSMutableString string];
14     [param appendString:@"place=beijing"];
15     [param appendString:@"&place=tianjin"];
16     [param appendString:@"&place=meizhou"];
17     request.HTTPBody = [param dataUsingEncoding:NSUTF8StringEncoding];
18     
19     // 5.发送请求
20     [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
21         if (data == nil || connectionError) return;
22         NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
23         NSString *error = dict[@"error"];
24         if (error) {
25             [MBProgressHUD showError:error];
26         } else {
27 //            NSArray *weathers = dict[@"weathers"];
28             NSLog(@"%@", dict);
29         }
30     }];
31 }

 

以上是关于如果向服务器发送多值参数的主要内容,如果未能解决你的问题,请参考以下文章

发送到:无效的参数

Alamofire 发送带键和多值的参数数组

显示多值参数

python多值参数函数介绍,数字累加例子

s-s-rS 多值参数

SSRS多值可选