0

我需要显示表格,如果数组有元素,还有另一个块,如果数组为空?我现在只有 for-each。我的数组有“项目”名称。

<some table header code...>
<xsl:for-each select="items/item">
    <some row code...>
</xsl:for-each>

我想要另一个变体,像这样,但采用 XSL 风格:

<xsl:if list is empty>
    <block> There is no elements!!! </block>
<xsl:else>
    <table code>
</xsl:if>

我该怎么做?我需要 if for FOP(pdf 生成器)。

4

1 回答 1

2

你可以这样做:

<xsl:choose>
   <xsl:when test="items/item">
       <xsl:for-each select="items/item">
            <some row code...>
       </xsl:for-each>
   </xsl:when>
   <xsl:otherwise>
       <block>  ... </block>
   </xsl:otherwise>
</xsl:choose>

但这将是一个更好的方法:

<xsl:apply-templates select="items[not(item)] | items/item" />

...

<xsl:template match="items">
   <block> ... </block>
</xsl:template>

<xsl:template match="item">
   <!-- Row code -->
</xsl:template>
于 2013-03-01T12:40:47.190 回答