在XPath中选择特定元素

时间:2016-05-15 12:11:03

标签: xpath duplicates element

我有两个同名“理由”的元素。当我使用//*:reason/text()时,它给了我两个元素,但我需要第一个元素。 (不是“细节”里面的那个)。请帮忙..

<xml xmlns:gob="http://osb.yes.co.il/GoblinAudit">
    <fault>
        <ctx:fault xmlns:ctx="http://www.bea.com/wli/sb/context">
            <ctx:errorCode>BEA-382500</ctx:errorCode>
            <ctx:reason>OSB Service Callout action received SOAP Fault response</ctx:reason>
            <ctx:details>
                <ns0:ReceivedFaultDetail xmlns:ns0="http://www.bea.com/wli/sb/stages/transform/config">
                    <ns0:faultcode xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">soapenv:Server</ns0:faultcode>
                    <ns0:faultstring>BEA-380001: Internal Server Error</ns0:faultstring>
                    <ns0:detail>
                        <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
                            <con:errorCode>BEA-380001</con:errorCode>
                            <con:reason>Internal Server Error</con:reason>
                            <con:location>
                                <con:node>RouteTo_FinancialControllerBS</con:node>
                                <con:path>response-pipeline</con:path>
                            </con:location>
                        </con:fault>
                    </ns0:detail>
                </ns0:ReceivedFaultDetail>
            </ctx:details>
            <ctx:location>
                <ctx:node>PipelinePairNode2</ctx:node>
                <ctx:pipeline>PipelinePairNode2_request</ctx:pipeline>
                <ctx:stage>set maintain offer</ctx:stage>
                <ctx:path>request-pipeline</ctx:path>
            </ctx:location>
        </ctx:fault>
    </fault>
</xml>

2 个答案:

答案 0 :(得分:2)

您正在使用//限定符,该限定符将下降到任何子树并查找reason的所有出现。您可以尝试更具体地了解子路径:

//fault/*:fault/*:reason/text()

这只会匹配外部reason,而不匹配内部reason.

答案 1 :(得分:2)

  

&#34; ...但我需要第一个&#34;

您可以使用位置索引来获取第一个匹配的reason元素:

(//*:reason)[1]/text()
  

&#34; (不是里面的那个&#34;细节&#34;)&#34;

上述内容可以表示为查找reason元素,该元素没有祖先details

//*:reason[not(ancestor::*:details)]/text()

对于大型XML文档,使用更具体的路径,即在开头避免//,将导致更高效的XPath:

/xml/fault/*:fault/*:reason/text()

但是对于一个小的XML,它只是个人偏好的问题,因为改进可能是微不足道的。