如何使用 AFImageRequestOperation 从 Web 服务器 API 检索图像?

问题描述 投票:0回答:1

我是 AFNetworking 的新手,我很难从我获取图像的服务器中检索图像数据。我想显示存储在 Web 服务器 API 中的图像。这就是我的

URLRequest
回来的结果:

{
o_id: "2",
g_id: "1",
title: "Here's a new objective",
description: "This is the description",
hint: "",
target: "10",
timestamp: "2012-09-19 17:24:59",
filename: "http://uploadedimageurl.co.uk/view/uploads/obj_2_1351788537.jpg",
image_width: "600",
active: "1",
group_name: "Test Group",
n_insights: "15",
n_comments: "0",
unixtimestamp: 1348071899,
}

我想检索文件名中的图像:我只是在如何做这件事上画了一个空白。我尝试过使用

AFImageRequestOperation
但我不确定我是否走在正确的轨道上 - 我将展示到目前为止我所拥有的...

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@/api/groups/get/1",URL_ROOT]];
    AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
    NSURLRequest *request = [httpClient requestWithMethod:@"GET" path:nil parameters:nil];
 AFImageRequestOperation *imageOperation = [AFImageRequestOperation imageRequestOperationWithRequest:request imageProcessingBlock:nil success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image)
    {

        
    } failure:nil];
    
    [imageOperation start];

只是想看看我是否朝着正确的方向检索此图像数据,但也想知道如何检索存储在文件名中的图像:有什么想法吗?

ios xcode uiimage afnetworking
1个回答
1
投票

您需要发送 2 个请求:

  1. AFJSON请求操作
  2. AF图像请求操作

在第一个请求操作的成功块中,您检索图像网址:

NSString* filename = [JSON valueForKey:@"filename"];
NSURL* imageURL = [NSURL URLWithString:filename];

然后使用该 URL 发送第二个请求(仅当它不为零时)。 如果 AFImageRequestOperation,您会在成功块中收到 UIImage。

© www.soinside.com 2019 - 2024. All rights reserved.