通过iOS Objective-C 2.0解析Google Search API XML结果



以下是我的Google API请求的XML结果:

<entry gd:kind="shopping#product">
<author>
<name>Bloomingdale&apos;s</name>
</author>
<title>7 For All Mankind &quot;Ginger&quot; Wide Leg Jeans in Lightweight Mercer Wash</title>
<s:product>
<s:author>
<s:name>Bloomingdale&apos;s</s:name>
<s:accountId>8020</s:accountId>
</s:author>
<s:title>7 For All Mankind &quot;Ginger&quot; Wide Leg Jeans in Lightweight Mercer Wash</s:title>
<s:description>7 for all Mankind &quot;Ginger&quot; jeans in lightweight mercer wash. A wide-leg fit.</s:description>
<s:brand>7 For All Mankind</s:brand>
<s:gtin>12345680753539</s:gtin>
<s:images>
<s:image link="http://images.bloomingdales.com/is/image/BLM/products/2/optimized/1144762_fpx.tif?wid=287&amp;qlt=90"/>
<s:image link="http://1.0.0.0/"/>
<s:image link="http://0.0.0.5/"/>
</s:images>
</s:product>
</entry>

以下是我解析XML:的NSXMLParser代码

@实现ItemViewController

- (void)parser:(NSXMLParser *)parser  
didStartElement:(NSString *)elementName  
namespaceURI:(NSString *)namespaceURI  
qualifiedName:(NSString *)qName  
attributes:(NSDictionary *)attributeDict
{  
if ([elementName isEqual:@"s:product"]) {  
    NSLog(@"found Product!");
    if (!"s:product")
        productScanned = [[NSMutableArray alloc] init];
    return;
}
if ([elementName isEqual:@"s:gtin"]) {
    // set ItemNumber as the GTIN of the productScanned     
    itemNumber = [[NSMutableString alloc] init];
}
if ([elementName isEqual:@"s:title"]) {
    // set ItemDesc as the item description of the productScanned
    itemDesc = [[NSMutableString alloc] init];
}
if ([elementName isEqual:@"s:brand"]) {
    // set ItemBrand as the brand description of the productScanned
    itemBrand = [[NSMutableString alloc] init];
}
if ([elementName isEqual:@"s:name"]) {
    // set ItemStore as the store location of the productScanned
    itemStore = [[NSMutableString alloc] init];
}
// Create array of Image Tags
if ([elementName isEqual:@"s:images"]) {
    NSLog(@"found Images!");
    if (!itemImageURLArray)
        itemImageURLArray = [[NSMutableArray alloc] init];
    return; 
    if ([elementName isEqualToString:@"s:image"]) {
        // itemImagesArray is an NSMutableArray instance variable
        if (!itemImagesArray)
            itemImagesArray = [[NSMutableArray alloc] init];
        NSString *thisLink = [attributeDict objectForKey:@"link"];
        if (thisLink)
            // do something
        return;
    }
}
itemImageURL = [itemImagesArray objectAtIndex:0];
}

为什么我的结果会返回除<s:images><s:image>元素之外的所有元素信息?

更好。帮助我理解为什么用于解析<s:images>的数组没有将这些元素加载到*itemImageURL指针中?

我假设itemImageURLArray应该包含url字符串,itemImagesArray应该包含url指向的实际图像。

s:image元素从不被处理,因为该代码在s:imagesif块内。当为s:image调用didStartElement时,该代码永远不会运行。将其移动到s:imagesif之外。

此外,在处理s:image的代码中,您可能希望将url字符串添加到itemImageURLArray数组中。在设置thisLink的行之后,尝试添加:

[itemImageURLArray addObject:thisLink];

至于将图像本身下载到itemImagesArray中,我将在xml解析之后作为单独的步骤来完成。您可以循环使用itemImagesArray并异步下载图像。


顺便说一下,这条线路:

if (!"s:product")

应该是:

if (!productScanned)

相关内容

  • 没有找到相关文章

最新更新