基于全局变量的条件模板

时间:2010-02-22 20:38:20

标签: xml xslt

我想复制大部分XML,除了依赖公司的几个节点,这些节点将被传递到样式表。如果我使用的是身份模板,并且我只希望在全局变量等于特定值时发生某些事情,那么我该如何实现呢?因为你不能检查[]之间的匹配...至少在1.0?因此,在下面的示例中,我只想在变量等于某个值(如'DEF Company')时换出公司名称。 'company'变量不会成为XML的一部分。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>

<!-- Dummy example variable -->
<xsl:variable name="company"><xsl:text>DEF Company</xsl:text></xsl:variable>

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

<xsl:template match="Company">  
    <xsl:copy>  
        <xsl:text>ABC Company</xsl:text>  
    </xsl:copy>  
</xsl:template>

</xsl:stylesheet>

3 个答案:

答案 0 :(得分:3)

好吧,你可以查看比赛内部。它可能不是最优雅的,但应该有效。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:param name="company" select="'DEF Company'"/>

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

    <xsl:template match="Company">
        <xsl:copy>
            <xsl:choose>
                <xsl:when test="$company = 'DEF Company'">
                    <xsl:text>ABC Company</xsl:text>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:apply-templates select="@* | node()" />
                </xsl:otherwise>
            </xsl:choose>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

答案 1 :(得分:1)

为了这个目的,我宁愿在样式表中使用嵌入元素:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:my="my-own-namespace">
    <my:company match="DEF Company" replace="ABC Company" />
    <xsl:template match="Company[.=document('')/*/my:company/@match]">
        <xsl:copy>
            <xsl:value-of select="document('')/*/my:company/@replace" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*"/>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template> 
</xsl:stylesheet>
带有空字符串参数的

document()函数引用样式表的根本身。

答案 2 :(得分:0)

我使用模板匹配[]和版本1.0 XSLT引擎(Xalan)。

例如:

<xsl:template match="@*|node()[name() !='a']">