5

我目前有一个实现 ASIHTTP 以处理 API 调用的视图控制器。

我的视图控制器触发 2 个单独的调用。我需要能够区分 -requestFinished(ASIHTTPRequest*)request 方法中的两个调用,因此我可以相应地解析每个调用...

有没有这样做的?

4

4 回答 4

9

使用 userInfo 字段!这就是它的目的!

ASIHTTPRequest(或 ASIFormDataRequest)对象有一个名为 .userInfo 的属性,它可以获取一个 NSDictionary,其中包含您想要的任何内容。所以我几乎总是去:

- (void) viewDidLoad { // or wherever
    ASIHTTPRequest *req = [ASIHTTPRequest requestWithUrl:theUrl];
    req.delegate = self;
    req.userInfo = [NSDictionary dictionaryWithObject:@"initialRequest" forKey:@"type"];
    [req startAsynchronous];
}

- (void)requestFinished:(ASIHTTPRequest *)request
{
    if ([[request.userInfo valueForKey:@"type"] isEqualToString:@"initialRequest"]) {
        // I know it's my "initialRequest" .req and not some other one!
        // In here I might parse my JSON that the server replied with, 
        // assemble image URLs, and request them, with a userInfo
        // field containing a dictionary with @"image" for the @"type", for instance.
    }
}

为您在此视图控制器中执行的每个不同 ASIHTTPRequest中的 key 对象设置不同的值@"type",您现在可以区分它们-requestFinished:并适当地处理它们中的每一个。

如果您真的很喜欢,您可以携带任何其他在请求完成时有用的数据。例如,如果您要延迟加载图像,则可以将一个句柄传递给您要填充的 UIImageView,然后在-requestFinished加载图像数据后执行此操作!

于 2010-09-23T17:50:04.730 回答
1

You can set the appropriate selectors which should be called at request creation:

[request setDelegate: self];
[request setDidFailSelector: @selector(apiCallDidFail:)];
[request setDidFinishSelector: @selector(apiCallDidFinish:)];

只需为不同的调用设置不同的选择器

于 2010-09-23T21:36:22.553 回答
1

您可以检查request传递给您的requestFinished:(ASIHTTPRequest *)request方法的参数以区分这两个调用。

例如,如果两个调用具有不同的 URL,您可以检查request.url属性以区分两个请求。

于 2010-09-23T17:17:46.003 回答
0

您可以检查 url/originalUrl 属性,或者您可以将其子类化并添加您自己的属性以指示调用我是如何做到的,因为比较整数比比较字符串更容易/更快。

IE

myRequest.callType = FACEBOOK_LOGIN;

我在这样的枚举中有所有调用:

enum calls {
FACEBOOK_LOGIN = 101,
FACEBOOK_GETWALL = 102,
...
}
于 2010-09-23T17:24:28.827 回答