如何在XSLT中正确分支?

时间:2013-09-05 13:03:10

标签: xml algorithm xslt branch xsl-fo

我正在尝试在XSLT中进行分支。以下是我要做的事情:

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

我遇到的问题是如果我找不到三个匹配的部分,例如,如果我找到Section2和Section3而不是Section4,我需要回到Section4并搜索值为'#'的部分。如果我找到Section2而不是Section3,我将回到Section3搜索'#'然后我会去Secton4并搜索正确的值(如果我找不到它,我会寻找'#')。

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

我已经在下面包含了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>

1 个答案:

答案 0 :(得分: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>

感谢您的帮助!