The encapsulated data requests plus the firewheel effect, the encapsulated requests plus the firewheel

Source: Internet
Author: User

The encapsulated data requests plus the firewheel effect, the encapsulated requests plus the firewheel

Encapsulate the effects of data requests and fire wheels into a method. You can directly call this method when using it.

+ (Void) startRequest :( NSString *) method

Baseurl :( NSString *) baseurl

Param :( NSDictionary *) params

Success :( DKSuccess) success

Failure :( DKFailure) failure

ShowProgress :( BOOL) progress {

NSAssert (params, @ "params is nil .");

NSDictionary * par ={ @ "reqData": [self dictionaryToString: params]};

If (progress ){

[SVProgressHUD showWithMaskType: SVProgressHUDMaskTypeClear];

}

AFHTTPSessionManager * manager = [AFHTTPSessionManager];

Manager. requestSerializer = [AFHTTPRequestSerializer serializer];

Manager. responseSerializer = [AFHTTPResponseSerializer serializer];

If ([method isinclutostring: Get]) {

[Manager GET: baseurl parameters: par progress: ^ (NSProgress * _ Nonnull downloadProgress ){

} Success: ^ (NSURLSessionDataTask * _ Nonnull task, id _ Nonnull responseObject ){

[SVProgressHUD dismiss];

NSAssert (responseObject, @ "responseObject is nil .");

Success (task, [self decryptData: responseObject]);

} Failure: ^ (NSURLSessionDataTask * _ Nullable task, NSError * _ Nonnull error ){

[SVProgressHUD dismiss];

Failure (task, error );

}];

} Else {

[Manager POST: baseurl parameters: par progress: ^ (NSProgress * _ Nonnull uploadProgress ){

} Success: ^ (NSURLSessionDataTask * _ Nonnull task, id _ Nonnull responseObject ){

[SVProgressHUD dismiss];

NSAssert (responseObject, @ "responseObject is nil .");

Success (task, [self decryptData: responseObject]);

} Failure: ^ (NSURLSessionDataTask * _ Nullable task, NSError * _ Nonnull error ){

[SVProgressHUD dismiss];

Failure (task, error );

}];

}

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.