gpt4 book ai didi

xml - 如何在 XSLT 中正确分支?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:29:55 24 4
gpt4 key购买 nike

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

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

我遇到的问题是,如果我找不到三个匹配的部分,例如,如果我找到第 2 节和第 3 节但找不到第 4 节,我需要返回到第 4 节并搜索值为“#”的部分。如果我找到第 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>

最佳答案

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

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

感谢您的帮助!

关于xml - 如何在 XSLT 中正确分支?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18637131/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com