3

我已经阅读了很多关于忽略名称空间的示例,但似乎无法在模板匹配中实现这个概念。

这是我的示例 xml:

<?xml version="1.0"?>
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <Response xmlns:ResB="http://www.aaa.com/v1" xmlns:dpconf="http://www.datapower.com/param/config" xmlns:exsl="http://xmlns.opentechnology.org/xslt-extensions/common" xmlns="http://www.aaa.com/v2">
         <Status>
            <Code>00000</Code>
        </Status>
      </Response>
    </soapenv:Body>
</soapenv:Envelope>

而且我不能在输出中使用名称空间。这是所需输出的示例:

<A>
   <Transformed>0000</Transformed>
</A>

这不是输出我的节点,所以我怎样才能有一个 xslt 来匹配响应节点并解决这个问题?

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="//*[local-name() = 'Response']">
<A>
<Transformed><xsl:value-of select="Status/Code"/></Transformed>
</A>
4

1 回答 1

10

为什么要忽略命名空间?只需声明并使用它。

<xsl:stylesheet 
  version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:v2="http://www.aaa.com/v2"
  exclude-result-prefixes="v2"
>
  <xsl:template match="v2:Response">
    <A>
      <Transformed>
        <xsl:value-of select="v2:Status/v2:Code" />
      </Transformed>
    </A>
  </xsl:template>
</xsl:stylesheet>
于 2013-06-26T15:08:54.320 回答