zoukankan      html  css  js  c++  java
  • ASI和AFN实现POST异步请求的相同功能的代码

    I'm a newbie in obj-c and have been using asihttp for some of my projects. When doing a post request in asihttp its done this way.

        ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
        [request setPostValue:height forKey:@"user[height]"];
        [request setPostValue:weight forKey:@"user[weight]"];
        [request setDelegate:self];
        [request startAsynchronous];
    

    How would go about doing this is AFNetworking with a code example ?


    I already got the get Json getrequest working in AFNetworking but this post request is giving me some problems. Thanks for help in advance. 


    答:

    Updated again for AFNetworking 2.0 - see bottom

    For AFNetworking 1.0:

    NSURL *url = [NSURL URLWithString:@"https://mysite.com/"];
    AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
    
    NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
                            height, @"user[height]",
                            weight, @"user[weight]",
                            nil];
    [httpClient postPath:@"/myobject" parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSString *responseStr = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
        NSLog(@"Request Successful, response '%@'", responseStr);
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        NSLog(@"[HTTPClient Error]: %@", error.localizedDescription);
    }];
    

    For AFNetworking 2.0 (and also using the new NSDictionary syntax):

    AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
    NSDictionary *params = @{@"user[height]": height,
                             @"user[weight]": weight};
    [manager POST:@"https://mysite.com/myobject" parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSLog(@"JSON: %@", responseObject);
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        NSLog(@"Error: %@", error);
    }];
    


  • 相关阅读:
    [洛谷][P1503][鬼子进村][Treap]
    [noi 2004] 郁闷的出纳员
    bzoj 3224,tyvj 1728普通平衡树
    Treap
    [模拟赛]棘手的操作
    bzoj 4551[Tjoi2016&Heoi2016]树
    bzoj2527 [Poi2011]Meteors
    bzoj4152 [AMPPZ2014]The Captain
    bzoj4516 [Sdoi2016]生成魔咒
    bzoj4547 小奇的集合
  • 原文地址:https://www.cnblogs.com/lytwajue/p/6857142.html
Copyright © 2011-2022 走看看