开发者社区> 问答> 正文

关于等待AFJSONRequestOperation完成 的问题

使用AFNetworking获取网站的一些JSON信息,如何从asynchronou请求返回得到响应?

- (id) descargarEncuestasParaCliente:(NSString *)id_client{

        NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://whatever.com/api/&id_cliente=%@", id_client]]];

        __block id RESPONSE;

        AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {

            RESPONSE = JSON;

        } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
            NSLog(@"ERROR: %@", error);
        }];

        [operation start];

        return RESPONSE;
    }

展开
收起
爵霸 2016-03-19 10:05:26 2019 0
1 条回答
写回答
取消 提交回答
  • 因为是异步执行的关系,显然你这样返回肯定不能及时得到结果。
    你可以将你的方法使用block改造一下

    - (void) descargarEncuestasParaCliente:(NSString *)id_client block:(void(^)(id json))processResult{
    
            NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://whatever.com/api/&id_cliente=%@", id_client]]];    
            AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
                processResult(JSON);  ///回调处理返回的json结果
            } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
                NSLog(@"ERROR: %@", error);
            }];
    
            [operation start];
        }

    调用:

    [self descargarEncuestasParaCliente:@"1" block:^(id json) {
          NSLog(@"return result is :%@",json);
    }
    2019-07-17 19:07:27
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载