1

这个问题与XSL store node-set in variable非常相似。主要区别在于,如果 XPath 没有找到与过滤器匹配的节点,我想返回第一个未过滤的结果。

我在这里的代码有效,但我觉得它是一种 hack,而不是良好的 XSL 风格。在这种情况下,每个章节节点都由一个字符串 id 标识。变量showChapter是标识章节的字符串。如果没有找到具有此 id 属性的章节,我想返回第一章。

相关代码:

<xsl:param name="showChapter" />

<!-- if $showChapter does not match any chapter id attribute, 
     set validShowChapter to id of first chapter. 
-->

<xsl:variable name="validShowChapter">
    <xsl:choose>
        <xsl:when test="/book/chapter[@id=string($showChapter)][position()=1]">
            <xsl:value-of select="$showChapter" />
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="/book/chapter[position()=1]/@id" />
        </xsl:otherwise>
    </xsl:choose>
</xsl:variable>

<!-- I want $chapter to be a valid node-set so I can use it in 
     XPath select statements in my templates 
-->
<xsl:variable 
    name="chapter"
    select="/book/chapter[@id=string($validShowChapter)][position()=1]"
>

这种方法是否像我认为的那样糟糕,如果是这样,您能否指出一个更好的解决方案?我正在使用由 PHP5 的 XSLTProcessor 处理的 XSLT 1.0,但欢迎使用 XSLT 2.0 解决方案。

4

1 回答 1

1

以下应该工作。顺便说一句,在您的示例中,很多使用position()andstring()是不需要的:

<xsl:param name="showChapter" />

<xsl:variable name="foundChapter" select="/book/chapter[@id = $showChapter]" />
<!-- Will select either the first chapter in $foundChapter, or
     the first chapter available if $foundChapter is empty -->
<xsl:variable name="chapter" 
              select="($foundChapter | /book/chapter[not($foundChapter)])[1]" />
于 2013-03-04T06:42:27.187 回答