0
我需要顯示錶,如果數組有元素,還有一些其他塊,如果數組是空的?我現在只有 - 每一個。我的數組有「項目」的名稱。如何在XSL中獲取數組長度?
<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>
我可怎麼辦呢?我需要如果爲FOP(PDF生成器)。