0

我正在尝试在 XSLT 中进行分支。这是我正在尝试做的事情的总结:

我正在遍历一个 XML 文件并搜索与 Section2、Section3 和 Section4 匹配的值(第 1 节和第 5 节仅用于处理目的)。如果所有值都匹配,我将打印出相应的 Section5,然后进行处理。

我遇到的问题是,如果我没有找到三个匹配的部分,例如,如果我找到 Section2 和 Section3 但没有找到 Section4,我需要返回 Section4 并搜索值为“#”的部分。如果我找到第 2 节而不是第 3 节,我将返回第 3 节搜索“#”,然后我将转到第 4 节并搜索正确的值(如果找不到,我将查找“#”)。

我不知道如何实现上述功能。目前所有代码都在寻找匹配的值,但它没有处理上述磅大小写,任何帮助将不胜感激。

我已经包含了下面的 XSLT 和下面的 XML 部分。

<xsl:template match="Section1">
    <xsl:param name="sec2"/>
    <xsl:param name="sec3"/>
    <xsl:param name="sec4"/>
    <xsl:apply-templates select="Section2[./@value=$sec2]">
        <xsl:with-param name="sec3" select="$sec3"/>
        <xsl:with-param name="sec4" select="$sec4"/>
    </xsl:apply-templates>
</xsl:template>
<xsl:template match="Section2">
    <xsl:param name="sec3"/>
    <xsl:param name="sec4"/>
    <xsl:apply-templates select="Section3[./@value=$sec3]">
        <xsl:with-param name="sec4" select="$sec4"/>
    </xsl:apply-templates>
</xsl:template>
<xsl:template match="Section3">
    <xsl:param name="sec4"/>
    <xsl:apply-templates select="Section4[./@value=$sec4]"/>
</xsl:template>
<xsl:template match="Section4">
    <xsl:apply-templates select="Content"/>
</xsl:template>
<xsl:template match="Section5">
    <!--Value will be printed here-->
</xsl:template>

<Section1>
<Section2 value="AP">
    <Section3 value="JP">
        <Section4 value="true">
            <Section5>Content #1</Section5>
        </Section4>
        <Section4 value="false">
            <Section5>Content #2</Section5>
        </Section4>
    </Section3>
    <Section3 value="KO">
        <Section4 value="true">
            <Section5>Content #3</Section5>
        </Section4>
        <Section4 value="false">
            <Section5>Content #4</Section5>
        </Section4>
    </Section3>
    <Section3 value="#">
        <Section4 value="true">
            <Section5>Content #5</Section5>
        </Section4>
        <Section4 value="false">
            <Section5>Content #6</Section5>
        </Section4>
    </Section3>
</Section2>
<Section2 value="LA">
    <Section3 value="#">
        <Section4 value="true">
            <Section5>Content #7</Section5>
        </Section4>
        <Section4 value="false">
            <Section5>Content #8</Section5>
        </Section4>
    </Section3>
</Section2>
<Section2 value="NA">
    <Section3 value="#">
        <Section4 value="true">
            <Section5>Content #9</Section5>
        </Section4>
        <Section4 value="false">
            <Section5>Content #10</Section5>
        </Section4>
    </Section3>
</Section2>
<Section2 value="E">
    <Section3 value="#">
        <Section4 value="#">
            <Section5>Content #11</Section5>
        </Section4>
    </Section3>
</Section2>

4

1 回答 1

1

我已经回答了我自己的问题!基本上,您需要将每个部分包装在一个变量中。测试是否有返回值,是否打印,否则找#,下面是代码!

<xsl:template match="Section1">
    <xsl:param name="sec2"/>
    <xsl:param name="sec3"/>
    <xsl:param name="sec4"/>
    <xsl:variable name="content">
        <xsl:apply-templates select="Section2[./@value=$sec2]">
            <xsl:with-param name="sec3" select="$sec3"/>
            <xsl:with-param name="sec4" select="$sec4"/>
        </xsl:apply-templates>
    </xsl:variable>
    <xsl:choose>
        <xsl:when test="$content = ''">
            <xsl:apply-templates select="Section2[./@value='#']">
                <xsl:with-param name="sec3" select="$sec3"/>
                <xsl:with-param name="sec4" select="$sec4"/>
            </xsl:apply-templates>
        </xsl:when>
        <xsl:otherwise>
            <xsl:copy-of select="$content"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
<xsl:template match="Section2">
    <xsl:param name="sec3"/>
    <xsl:param name="sec4"/>
    <xsl:variable name="content">
        <xsl:apply-templates select="Section3[./@value=$sec3]">
           <xsl:with-param name="sec4" select="$sec4"/>
        </xsl:apply-templates>
    </xsl:variable>
    <xsl:choose>
        <xsl:when test="$content = ''">
            <xsl:apply-templates select="Section3[./@value='#']">
                <xsl:with-param name="sec4" select="$sec4"/>
            </xsl:apply-templates>
        </xsl:when>
        <xsl:otherwise>
            <xsl:copy-of select="$content"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
<xsl:template match="Section3">
    <xsl:param name="sec4"/>
    <xsl:variable name="content">
        <xsl:apply-templates select="Section4[./@value=$sec4]"/>
    </xsl:variable>
    <xsl:choose>
        <xsl:when test="$content = ''">
            <xsl:apply-templates select="Section4[./@value='*']"/>
        </xsl:when>
        <xsl:otherwise>
            <xsl:copy-of select="$content"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
<xsl:template match="Section4">
    <xsl:apply-templates select="Content"/>
</xsl:template>
<xsl:template match="Section5">
    <!--Value will be printed here-->
</xsl:template>

感谢您的帮助!

于 2013-09-06T17:28:59.023 回答