XSLT避免命名空间

时间:2016-09-21 05:09:36

标签: xslt xslt-1.0

我有一个输入xml,如..:

 <?xml version="1.0" encoding="UTF-8"?>
    <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
        <S:Body>
            <ListResponse xmlns="urn:abcde:xyz:1">
                <Gtins>
                    <Gtin>
                        <gtinID>11111</gtinID>
                        <name>222222</name>
                        <label>S11111 - EA</label>
                        <description>XYZ</description>
                        <value>11111</value>
                    </Gtin>
                    <Gtin>
                        <gtinID>999999</gtinID>
                        <name>999999</name>
                        <label>asdfg</label>
                        <description>ghgj</description>
                        <value>999999</value>
                    </Gtin>
                </Gtins>
            </ListResponse>
        </S:Body>
    </S:Envelope>

如何选择节点的每一个值&#39; Gtin&#39;并通过XSLT避免命名空间?

输出XML应该是......

<ns0:RFC xmlns:ns0="http://asd.com">
    <Gtins>
      <Gtin>
        <gtinID>11111</gtinID>
        <name>222222</name>
        <label>S11111 - EA</label>
        <description>XYZ</description>
        <value>11111</value>
      </Gtin>
      <Gtin>
        <gtinID>999999</gtinID>
        <name>999999</name>
        <label>asdfg</label>
        <description>ghgj</description>
        <value>999999</value>
      </Gtin>
     </Gtins>   
  </ns0:RFC>

2 个答案:

答案 0 :(得分:1)

以此为出发点:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xyz="urn:abcde:xyz:1"
exclude-result-prefixes="S xyz">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/S:Envelope">
    <ns0:RFC xmlns:ns0="http://asd.com">
        <Gtins>
            <xsl:for-each select="S:Body/xyz:ListResponse/xyz:Gtins/xyz:Gtin">
                <Gtin>
                    <gtinID>
                        <xsl:value-of select="xyz:GtinID"/>
                    </gtinID>
                    <!-- more here -->
                </Gtin>
            </xsl:for-each>         
        </Gtins>
    </ns0:RFC>
</xsl:template>

</xsl:stylesheet>

甚至更简单:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xyz="urn:abcde:xyz:1"
exclude-result-prefixes="S xyz">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="/S:Envelope">
    <ns0:RFC xmlns:ns0="http://asd.com">
        <Gtins>
            <xsl:apply-templates select="S:Body/xyz:ListResponse/xyz:Gtins/xyz:Gtin"/>
        </Gtins>
    </ns0:RFC>
</xsl:template>

<xsl:template match="*">
    <xsl:element name="{local-name()}">
        <xsl:apply-templates/>
    </xsl:element>
</xsl:template>

</xsl:stylesheet>

答案 1 :(得分:0)

结论/摘要的评论和其他已经回答的问题。

在@ michael.hor257k的建议中,请访问此主题。接受与您相同的问题的答案。 Use of namespace

  

问题:您的XML将其元素放在命名空间中。

     

解决方案:在样式表中声明相同的命名空间,为其指定前缀并使用该前缀来处理源XML中的元素。

由于您的输入,您可以使用此基础自行开始和继续:

<xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:abc="urn:abcde:xyz:1">

    <xsl:output method="xml" indent="yes"/>

    <xsl:template match="/S:Envelope">
        <!-- select any child - exemplary -->
        <xsl:value-of select="S:Body/abc:ListResponse/abc:Gtins/abc:Gtin/abc:gtinID" />
    </xsl:template>

</xsl:stylesheet>

<强>此外:

这是input-xml的等效版本:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns:abc="urn:abcde:xyz:1">
    <S:Body>
        <abc:ListResponse>
            <abc:Gtins>
                <abc:Gtin>
                    <abc:gtinID>11111</abc:gtinID>
                    <abc:name>222222</abc:name>
                    <abc:label>S11111 - EA</abc:label>
                    <abc:description>XYZ</abc:description>
                    <abc:value>11111</abc:value>
                </abc:Gtin>
                <abc:Gtin>
                    <abc:gtinID>999999</abc:gtinID>
                    <abc:name>999999</abc:name>
                    <abc:label>asdfg</abc:label>
                    <abc:description>ghgj</abc:description>
                    <abc:value>999999</abc:value>
                </abc:Gtin>
            </abc:Gtins>
        </abc:ListResponse>
    </S:Body>
</S:Envelope>

命名空间有原因!使用它们并且不要仅仅为了#34;我不理解它们,所以我想要删除它们&#34; -reasons。不要误会我的意思,你的结果-ml可以没有命名空间,毫无疑问。有很多关于SO的例子,去吧。