可以通过三种方式向服务器发送数据:NSURLRequest,NSMutableURLRequest,NSURLConnection
一、NSURLRequest向服务器发送同步或异步请求
举例:如何发送一个GET请求
* 默认就是GET请求
// 1.URL
NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"];
// 2.请求
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// 3.发送请求
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
}];
二、NSMutableURLRequest向服务器发送请求
如何发送一个POST请求
// 1.创建一个URL
:
请求路径
NSURL *url = [NSURL URLWithString:@"http://xxxxxx/login"];
// 2.创建一个请求
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
// 设置请求方法
request.HTTPMethod = @"POST";
// 设置请求体 :
请求参数
NSString *param = [NSString stringWithFormat:@"username=%@&pwd=%@", usernameText, pwdText];
// NSString --> NSData
request.HTTPBody = [param dataUsingEncoding:NSUTF8StringEncoding];
三、NSURLConnection向服务器发送请求
利用NSURLConnection发送请求的基本步骤
// 1.创建一个NSURL对象 : 请求请求路径
NSURL *url = [NSURL URLWithString:@"http://4234324/5345345"];
// 2.传入NSURL创建一个NSURLRequest对象,设置请求头和请求体
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// 3.使用NSURLConnection发送NSURLRequest请求
[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:
^(NSURLResponse *response, NSData *data, NSError *connectionError) {
// 4.处理服务器返回的数据
}];
- 发送同步请求
+ (NSData *)sendSynchronousRequest:(NSURLRequest*)request returningResponse:(NSURLResponse**)response error:(NSError**)error;
2.发送异步请求---根据对服务器返回数据的处理方式的不同,分为block回调和NSURLConnectionDelegate代理方法
- block回调
+ (void)sendAsynchronousRequest:(NSURLRequest*) request
queue:(NSOperationQueue*) queue
completionHandler:(void (^)(NSURLResponse* response, NSData* data, NSError* connectionError)) handler
- request:需要发送的请求
- queue:一般用主队列,存放handler这个任务
- handler:当请求完毕后,会自动调用这个block
- NSURLConnectionDelegate协议中的代理方法
开始接收到服务器的响应时调用
- (void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response;
接收到服务器返回的数据时调用(服务器返回的数据比较大时会调用多次)
- (void)connection:(NSURLConnection*)connection didReceiveData:(NSData*)data;
服务器返回的数据完全接收完毕后调用
- (void)connectionDidFinishLoading:(NSURLConnection*)connection;
请求出错时调用(比如请求超时)
- (void)connection:(NSURLConnection*)connection didFailWithError:(NSError*)error;
四、发送JSON给服务器
1.一定要使用POST请求
2.设置请求头:
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
3.设置JSON数据为请求体