使用ASIRequest框架 封装一个专门用于数据json串获取的类

新建数据请求类 

编辑MethodsofRest.h如下:

//
//  MethodsofRest.h
//  创业项目工程
//
//  Created by apple on 15/9/23.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface MethodsofRest : NSObject <ASIHTTPRequestDelegate>

@property (nonatomic, strong) NSString *jsonStr;
@property(nonatomic, strong) NSString *url;
@property(nonatomic, strong)ASIHTTPRequest *reques;
-(id) init:(NSString *) url;
-(NSString *) jsonString;

@end

编辑 MethodsofRest.m如下:

//
//  MethodsofRest.m
//  创业项目工程
//
//  Created by apple on 15/9/23.
//  Copyright (c) 2015年 LiuXun. All rights reserved.
//

#import "MethodsofRest.h"

@implementation MethodsofRest
-(id) init:(NSString *) url
{
    if (self = [super init]) {
        self.url = url;
    }
    return self;
}
-(void) requestFinished:(ASIHTTPRequest *)request
{
    NSString *json = request.responseString;
    self.jsonStr = json;
}
-(void) requestFailed:(ASIHTTPRequest *)request
{
    NSLog(@"数据请求失败");
}
-(NSString *)jsonString
{
    _reques = [[ASIHTTPRequest  alloc] initWithURL:[NSURL URLWithString:self.url]];
    [_reques setRequestMethod:@"GET"];
    _reques.delegate = self;
    [_reques startSynchronous];  // 如果要独立抽取到一个类中,必须要用同步请求
    return self.jsonStr;
}
@end

应该注意的问题如下:

一、让数据请求类遵守ASIHttpRequestDelegate协议

二、实现协议中的方法  直接command  点进协议 复制两个数据请求完成和数据请求失败的两个方法

三、特别注意:在数据请求类中发送数据请求时必须 使用同步发送,否则会崩溃 即[self startSynchronous];

四、此方法仅仅适用于get请求,对于post请求还要再做改进



你可能感兴趣的:(使用ASIRequest框架 封装一个专门用于数据json串获取的类)