ASIHttpRequest加载网络数据和上传数据功能_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > ASIHttpRequest加载网络数据和上传数据功能

ASIHttpRequest加载网络数据和上传数据功能

 2015/4/29 21:07:52  jsonUserList  程序员俱乐部  我要评论(0)
  • 摘要:使用ASIHttpRequest第三库,需要配置二,上传数据功能使用ASIFromDataRequest(可以上传二进制和字符串给服务器)下面来牛刀小试//建立一个工程,导入第三方库,在AppDelegate.h#import<UIKit/UIKit.h>#import"ASIFormDataRequest.h"@interfaceAppDelegate:UIResponder<UIApplicationDelegate,ASIHTTPRequestDelegate>
  • 标签:功能 上传 数据 网络 HTTP

使用ASIHttpRequest第三库,需要配置

二,

上传数据功能使用ASIFromDataRequest(可以上传二进制和字符串给服务器)

下面来牛刀小试

//建立一个工程,导入第三方库,在AppDelegate.h
#import <UIKit/UIKit.h>
#import "ASIFormDataRequest.h"
@interface AppDelegate : UIResponder <UIApplicationDelegate,ASIHTTPRequestDelegate>
{
    //声明数据请求的成员变量
    ASIFormDataRequest *_request;
}
@property (strong, nonatomic) UIWindow *window;

@end
//在AppDelegate.m里写的代码

//通过POST请求加载数据
NSURL *url=[NSURL URLWithString:@"http://10.0.8.8/sns/my/login.php"];
//实例化成对象
_request=[[ASIFormDataRequest alloc]initWithURL:url];
//设置请求方式
[_request setRequestMethod:@"post"];
//添加参数
[_request addPostValue:@"aa_Zx" forKey:@"username"];
[_request addPostValue:@"ffff" forKey:@"password"];
//设置代理回调
_request.delegate=self;
//请求数据
[_request startAsynchronous];//异步请求,多线程
#param -mark ASIHttpRequest
-(void)requestFinished:(ASIHTTPRequest *)request
{
NSDictionary *dict=[NSJSONSerialization  JSONObjectWithData:request.responseData options:NSJSONReadingMutableContainers error:nil];
   NSLog(@"%@",dict);

}
- (void)requestFailed:(ASIHTTPRequest *)request
{
    NSLog(@"请求失败");
}

 三,加载网络数据,ASIHttpRequest(所有格式的数据都能加载)

-(void)startLoadWebData:(NSString *)strURL
{
//实例化ASIHttpRequest对象
NSURL *url=[NSURL URLWithString:strURL];
_request=[[ASIHTTPRequest alloc]initWithURL:url];
_requent.delegate=self;
//开始加载数据
[_requenst startAsynchronous];
}
#pragma -mark ASIHttpRequestDelegate
//请求成功时调用该方法
-(void)requestFinished:(ASIHTTPRequest *)request
{
NSDictionary *dict=[NSJSONSerialization JSONObjectWithData:request.responseData
options:NSJSONReadingMutableContainers error:nil];
//代理接收数据
[self.delegate reciveData:[dict objectForKey:@"application"];
}
//请求网络数据失败时调用该方法
-(void)requestFailed:(ASIHTTPRequest *)request
{
NSLog(@"failed");
}

 

发表评论
用户名: 匿名