我正在尝试使用xslt进行分支。下面是我要做的事情的详细介绍:
我正在遍历一个XML文件并搜索一个与Section2、Section3和Section4匹配的值(Section1和Section5仅用于处理目的)。如果所有值都匹配,我将打印出相应的第5节,然后进行处理。
我遇到的问题是,如果找不到三个匹配的部分,例如,如果找到Section2和Section3而不是Section4,则需要返回Section4并搜索值为“35;”的部分。如果我找到Section2而不是Section3,我将返回Section3搜索一个“35;”,然后我将转到Section4并搜索正确的值(如果找不到它,我将查找一个“”)。
我不知道如何实现上述功能目前,所有的代码正在做的是寻找匹配的值,但它没有处理英镑的情况下,上述任何帮助将非常感谢。
我已经包括了下面的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>

最佳答案

我已经回答了我自己的问题基本上你需要把每个部分包装成一个变量测试是否返回值,如果是打印值,否则查找,下面是代码!

<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>

谢谢你的帮助!

10-06 06:23