我在分配计数器变量并递增它然后在XSLT中检查某个值时遇到了一些困难。这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" <xsl:variable name="empty_string"/>
<xsl:variable name="counter" select="0"/>
<xsl:template match="/Collection">
<xsl:for-each select="Content">
<xsl:sort select="Html/root/Event/start_date" order="ascending"/>
<xsl:variable name="isFutureEvent">
<xsl:value-of select="syscom:isFutureDate(Html/root/Event/start_date)" />
</xsl:variable>
<xsl:if test="Html/root/Event != $empty_string">
<xsl:if test="$isFutureEvent='true'">
<!-- Increment Counter -->
<xsl:value-of select="$counter + 1"/>
<!-- Test if Counter < 4 -->
<xsl:if test="$counter < 3">
<div class="media">
<!-- Do stuff here -->
</div>
</xsl:if> <!-- End if for counter -->
</xsl:if>
</xsl:if>
<!--</xsl:when>-->
<!--</xsl:choose>-->
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
但它似乎没有增加我的计数器,并且当计数器击中时没有退出3.对此有任何帮助吗?
答案 0 :(得分:11)
<xsl:value-of select="$counter + 1"/>
只会输出$counter+1
要做循环,你必须使用递归 - 例如:
<xsl:stylesheet
version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="loop">
<xsl:param name="i"/>
<xsl:param name="limit"/>
<xsl:if test="$i <= $limit">
<div>
<xsl:value-of select="$i"/>
</div>
<xsl:call-template name="loop">
<xsl:with-param name="i" select="$i+1"/>
<xsl:with-param name="limit" select="$limit"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template match="/">
<html>
<body>
<xsl:call-template name="loop">
<xsl:with-param name="i" select="0"/>
<xsl:with-param name="limit" select="10"/>
</xsl:call-template>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
尽管最好避免循环 - 在大多数情况下,可以编写XSL来避免循环,但是我不太了解你想要实现什么来为你提供完整的解决方案。
答案 1 :(得分:8)
我有同样的问题。我需要在循环中增加值。所以最简单的方法是包括Saxon并使用该值。
如果您使用Saxon 6.5.5
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
...
xmlns:saxon="http://icl.com/saxon"
extension-element-prefixes="saxon"
version="3.0">
如果您使用Saxon 9.4.0.4
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
...
xmlns:saxon="http://saxon.sf.net/"
extension-element-prefixes="saxon"
version="3.0">
之后你可以简单地使用撒克逊变量:
<xsl:variable name="counter" select="0" saxon:assignable="yes"/> <!-- declare value -->
<saxon:assign name="counter" select="$counter+1"/> <!-- increment value, you can do it in loop for example-->
<xsl:value-of select="$counter"></xsl:value-of> <!-- print value -->
答案 2 :(得分:3)
如果您想知道for-each循环中的位置,可以使用内置的position()函数。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/Collection">
<xsl:for-each select="Content">
<xsl:if test="position() < 3">
<!-- Do this for nodes 1, 2 and 3 -->
</xsl:if>
<!-- Do this for every node -->
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
答案 3 :(得分:2)
如果在使用.net(XslCompiledTransform
)时有人想要这样做,你可以使用
<xsl:stylesheet ... xmlns:customCode="urn:customCode">
<msxsl:script language="VB" implements-prefix="customCode">
<![CDATA[
private mCounter As Integer
Public Function AddToCounter() As Boolean
mCounter += 1
Return True
End Function
Public Function GetCounter() As Integer
Return mCounter
End Function
]]>
</msxsl:script>
然后你添加一个对“customCode:AddToCounter()”的调用,然后你可以写一个这样的消息<xsl:message><xsl:value-of select="customCode:GetCounter()" /> rows remaining.</xsl:message>
答案 4 :(得分:0)
我们无法更新xsl:variable
,因为它们就像常量一样。但是我们可以更新dp:local-variables
,所以这里dp:local-variable
计数器在开始for-loop之前被初始化。每次循环运行时,计数器将自动更新1。
试试这个:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" <xsl:variable name="empty_string"/>
<xsl:template match="/Collection">
<dp:set-local-variable name="'counter'" value="0"/>
<xsl:for-each select="Content">
<dp:set-local-variable name="'counter'" value="dp:local-variable('counter')+1"/>
<xsl:sort select="Html/root/Event/start_date" order="ascending"/>
<xsl:variable name="isFutureEvent">
<xsl:value-of select="syscom:isFutureDate(Html/root/Event/start_date)" />
</xsl:variable>
<xsl:if test="Html/root/Event != $empty_string">
<xsl:if test="$isFutureEvent='true'">
<xsl:value-of select="dp:local-variable('counter')"/>
<!-- Test if Counter < 4 -->
<xsl:if test="dp:local-variable('counter') < 3">
<div class="media">
<!-- Do stuff here -->
</div>
</xsl:if>
<!-- End if for counter -->
</xsl:if>
</xsl:if>
<!--</xsl:when>-->
<!--</xsl:choose>-->
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
答案 5 :(得分:0)
在我的情况下,我需要在货件中总共装箱,这有帮助
<xsl:for-each select="ShippingConfirmation/Details/LicensePlates/LicensePlate">
<xsl:if test="position()=last()">
<xsl:value-of select="position()"/>
</xsl:if>
</xsl:for-each>