XSLT 更改元素中的命名空间 [英] XSLT to change namespace in element

查看:34
本文介绍了XSLT 更改元素中的命名空间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用以下 xsl 代码更改元素属性的命名空间:

I'm trying to change the namespace of an element attribute using the below xsl code:

<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:ns2="http://www.ean-ucc.org/schemas/1.3.1/eanucc"> 
    <xsl:output encoding='UTF-8' indent='yes' method='xml'/>

    <!-- copy everything into the output -->
    <xsl:template match='@*|node()'>
        <xsl:copy>
            <xsl:apply-templates select='@*|node()'/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="IRenvelope">
        <IRL xmlns:xsd="http://www.xx.com">
            <xsl:copy-of select="node()|@*"/>
        </IRL>
    </xsl:template>
</xsl:stylesheet>

我用于测试的 xml 消息是:

The xml message i use for testing is:

<GMessage xmlns="http://www.giffgaff.uk/CM/envelope">
<EnvelopeVersion>2.0</EnvelopeVersion>
  <body>
    <IRenvelope xmlns="http://www.mnv.com/elc/sap">
            <Keys>
                <Key Type="TaxOfficeNumber">635</Key>
            </Keys>
        </IRenvelope>
   </body>
 </GMessage>

我无法让它工作,命名空间没有改变,但提供了相同的结果.有什么帮助吗?

I couldnt make it work and the namespace is not changing but provinding the same result. any help please?

输出xml如下:

     <GMessage xmlns="http://www.giffgaff.uk/CM/envelope">
         <EnvelopeVersion>2.0</EnvelopeVersion>
           <body>
             <IRenvelope xmlns="http://www.xx.com">
               <Keys>
                  <Key Type="TaxOfficeNumber">635</Key>
                </Keys>
               </IRenvelope>
            </body>
       </GMessage>

推荐答案

以下 XSLT 将帮助您获得所需的结果:

The below XSLT will help you to get the desired results:

<xsl:stylesheet
    version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xsd="http://www.xx.com"
    xmlns:ns="http://www.mnv.com/elc/sap"
    exclude-result-prefixes="ns"> 
    <xsl:output encoding='UTF-8' indent='yes' method='xml'/>

    <!-- copy everything into the output -->
    <xsl:template match='@*|node()'>
        <xsl:copy>
            <xsl:apply-templates select='@*, node()'/>
        </xsl:copy>
    </xsl:template>

    <!-- template to match ns:IRenvelope element and creating a new element -->
    <xsl:template match="ns:IRenvelope">
        <xsl:element name="IRL" namespace="http://www.xx.com">
            <xsl:apply-templates select="@*, node()"/>
        </xsl:element>
    </xsl:template>

    <!-- template to change the namespace 
         of the elements  
         from "http://www.mnv.com/elc/sap" 
         to "http://www.xx.com" -->
    <xsl:template match="ns:*">
        <xsl:element name="{local-name()}" namespace="http://www.xx.com">
            <xsl:apply-templates select="@*, node()"/>
        </xsl:element>
    </xsl:template>

</xsl:stylesheet>

这里,最后两个模板分别匹配 ns:IRenvelope 和具有命名空间 http://www.mnv.com/elc/sap 的所有元素.使用 xsl:element 及其命名空间属性,我们可以创建具有所需命名空间的新元素.

Here, the last two templates match the ns:IRenvelope and all the elements with namespace http://www.mnv.com/elc/sap, respectively. Using the xsl:element and its namespace attribute, we can create the new elements with desired namespace.

您还可以使用前缀声明所需的命名空间并创建如下元素:

You can also declare the desired namespaces with prefixes and create elements as below:

<xsd:IRL xmlns:xsd="http://www.xx.com">
    ...
</xsd:IRL>

对于 XSLT-1.0:

For XSLT-1.0:

只需替换 ,(comma) 即可在 apply-templates 中使用 |(pipe),因为 2.0 支持使用逗号对操作进行排序:

Just replace the ,(comma) to use a |(pipe) in apply-templates as using comma to sequence the action is supported in 2.0:

<xsl:apply-templates select="@* | node()"/>

这篇关于XSLT 更改元素中的命名空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆