使用 xslt 更改元素的命名空间 [英] change the namespace of an element with xslt

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

问题描述

我想做这个

<hello>
  <one>
    <paragraph>p1</paragraph>
  </one>
</hello> 

进入这个

<x:hello y:an_attribute="a value for an_attribute" xmlns:x="some_new_namespace" xmlns:y="other_ns">
  <one>
    <paragraph>p1</paragraph>
  </one>
</x:hello> 

这是我想出的样式表:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>

    <xsl:param name="element_localname" select="'hello'"/>


    <xsl:template match="node()">
        <xsl:choose>
            <xsl:when test="local-name() = $element_localname">
                <xsl:element name="{$element_localname}" namespace="some_new_namespace">
                    <xsl:attribute name="an_attribute" namespace="other_ns">a value for an_attribute</xsl:attribute>
                    <xsl:apply-templates select="node()"/>
                </xsl:element>
            </xsl:when>

            <!-- copy the rest as is -->
            <xsl:otherwise> 
                <xsl:copy>
                    <xsl:apply-templates select="node()" />
                </xsl:copy>
            </xsl:otherwise>

        </xsl:choose>
    </xsl:template>

</xsl:stylesheet> 

但出于某种奇怪的原因,我添加到元素的属性与根元素本身具有相同的命名空间?为什么?

but for some strange reason, the attribute I am adding to the element has the same namespace as the root element itself? why?

<ns0:hello xmlns:ns0="other_ns" ns0:an_attribute="a value for an_attribute">
  <one>
    <paragraph>p1</paragraph>
  </one>
</ns0:hello>

感谢您的阅读.

推荐答案

此样式表:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:x="some_new_namespace"
    xmlns:y="other_ns">
    <xsl:output method="xml" indent="yes"/>
    <xsl:param name="element_localname" select="'hello'"/>
    <xsl:template match="node()|@*" name="identity">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="*">
        <xsl:choose>
            <xsl:when test="local-name() = $element_localname">
                <xsl:element name="x:{$element_localname}">
                    <xsl:attribute name="y:an_attribute">
                        <xsl:text>a value for an_attribute</xsl:text>
                    </xsl:attribute>
                    <xsl:apply-templates select="node()|@*"/>
                </xsl:element>
            </xsl:when>
            <xsl:otherwise>
                <xsl:call-template name="identity" />
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

输出:

<x:hello y:an_attribute="a value for an_attribute"
         xmlns:y="other_ns" xmlns:x="some_new_namespace">
    <one>
        <paragraph>p1</paragraph>
    </one>
</x:hello>

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

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