4

我正在开发一个 ios 应用程序,我正在用 gdataxml 解析我的 xml,但我做错了,我的 nslog 为空

NSError *error = nil;
GDataXMLDocument *xmlResult = [[GDataXMLDocument alloc] initWithData:data options:0 error:&error];
if (error) {
    NSLog(@"%@",error);
}

NSLog(@"%@",xmlResult.rootElement); 我的根元素是完美的,错误是 tempArray

NSArray *tempArray = [xmlResult nodesForXPath:@"//message/error/value" error:&error];

NSLog(@"mon 数组 %@",tempArray);

我的数组为空,

我的xml是这样的:

<message xmlns="http://.....Api" xmlns:i="http://www.w3.org/....">
<error i:nil="true"/>
<value>

我很确定我的问题与命名空间有关,但我不知道该怎么做?

感谢您的回答

4

1 回答 1

9

在使用 GDataXMLNode 进行一些测试后,这是我的答案:

NSArray *tempArray = [xmlResult nodesForXPath:@"//_def_ns:message/_def_ns:error/_def_ns:value" error:&error];

您可以在 GDataXMLNode.h 中看到此注释:

// This implementation of nodesForXPath registers namespaces only from the
// document's root node.  _def_ns may be used as a prefix for the default
// namespace, though there's no guarantee that the default namespace will
// be consistenly the same namespace in server responses.

它指出您实际上可以使用_def_ns作为命名空间。但是,您也可以设置自己的命名空间,以防文档中存在其他命名空间。

NSDictionary *myNS = [NSDictionary dictionaryWithObjectsAndKeys:
                      @"http://.....Api", @"ns1",
                      @"http://.....Other_Api", @"ns2", nil];
NSArray *tempArray = [xmlResult nodesForXPath:@"//ns1:message/ns1:error/ns1:value" namespaces:myNS error:&error];
于 2012-02-23T11:04:45.350 回答