1

我的 API 看起来像 #https://www.wikifood.eu/wikifood/en/struts/userfoodDB.do?method=getProductOverview&query=4016249502058&startAt=0&limit=5&filter=true&loginname=developer&password=4f14f46f76c4b9be2150be579669e699b79f0093

我需要将它添加到我的扫描条形码的应用程序中。所以参数查询我需要改成resultText:

#https://www.wikifood.eu/wikifood/en/struts/userfoodDB.do?method=getProductOverview&query="resultText"&startAt=0&limit=5&filter=true&loginname=developer&password=4f14f46f76c4b9be2150be579669e699b79f0093 

现在我需要创建对数据库的请求。而不是接收一些xml文件。

1)我该怎么做?如果我只需要解析结果(xml 文件)并将其显示在 iPhone 上?

2) 解析后可以在ImageView中显示结果吗?

我现在正在尝试使用 ASIHTTPRequest http://allseeing-i.com/ASIHTTPRequest/How-to-use来做到这一点,但实际上我不明白除了这个我应该做什么:

- (IBAction)grabURLInBackground:(id)sender
{
 NSURL *url = [NSURL     URLWithString:@"https://www.wikifood.eu/wikifood/en/struts/userfoodDB.do?method=getProductOverview&query="resultText"&startAt=0&limit=5&filter=true&loginname=NNNNNNNN&password=PPPPPPPPPP"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request startAsynchronous];

}

- (void)requestFinished:(ASIHTTPRequest *)request
{
// Use when fetching text data
NSString *responseString = [request responseString];

}

- (void)requestFailed:(ASIHTTPRequest *)request
{
NSError *error = [request error];
}
@end

我应该在委托文件或控制器文件中添加一些东西吗?

谢谢

希望早日收到你的消息

4

1 回答 1

0

所以我也在使用 ASIHTTPRequest。

当我从 ... requestFinished获取数据时,只需通过调用 JSON Value 将其放入 NSDictionary (在此处下载 api )

例如:

NSDictionary *dic = [[request responseString] JSONValue];

然后您可以访问 cellForRowAtIndexPath 中的数据以在 tableView 中购买数据。

知道了?

于 2012-10-14T06:14:38.057 回答