我无法弄清楚如何在div中包含for-each的内容,其中每个div包含4个元素。
下面,您将找到我的XSLT的简化版本:
<xsl:template match="/">
<div class="container"><!-- have to be repeated for every 4 elements from the for-each -->
<xsl:for-each select="$currentPage/GalleriListe/descendant::* [@isDoc] [not(self::GalleriListe)]">
<div>...</div>
</xsl:for-each>
</div>
</xsl:template>
有什么想法吗? 谢谢!
答案 0 :(得分:1)
你没有发布你的XML,所以我用了一个简化的答案。它有点hacky,可能会有更优雅的方式。您可以在this XMLPlayground session
进行测试<!-- declare how many items per container -->
<xsl:variable name='num_per_div' select='4' />
<!-- root - kick things off -->
<xsl:template match="/">
<xsl:apply-templates select='root/node' mode='container' />
</xsl:template>
<!-- iteration content - containers -->
<xsl:template match='node' mode='container'>
<xsl:if test='position() = 1 or not((position()-1) mod $num_per_div)'>
<div>
<xsl:variable name='pos' select='position()' />
<xsl:apply-templates select='. | following-sibling::*[count(preceding-sibling::node) < $pos+(number($num_per_div)-1)]' />
</div>
</xsl:if>
</xsl:template>
<!-- iteration content - individual items -->
<xsl:template match='node'>
<p><xsl:value-of select='.' /></p>
</xsl:template>