我是XSL的新手,所以我真的不知道如何做到这一点。我有一个for-each语句,它为类型“cell”的每个元素进行一些计算。如何总结结果并将它们存储在变量中,以便我可以显示它?我已经包含了部分代码。
我希望有人知道解决这个问题的方法。感谢您的时间和精力!
<?xml version="1.0"?>
<xsl:stylesheet version="1.0">
<xsl:output media-type="xml" encoding="ISO-8859-1" indent="yes"/>
<xsl:key name="object-map" match="/Data/Objects/*" use="@ExternalId"/>
<xsl:template match="/">
<Data>
<Objects>
...
...
...
<xsl:for-each select="Data/Objects/Cell">
<xsl:attribute name="PpXmlVer">
<xsl:text>7.0</xsl:text>
</xsl:attribute>
......................
<!--Calculating Machine Time: -->
<Cell>
<xsl:attribute name="ExternalId">
<xsl:value-of select="@ExternalId"/>
</xsl:attribute>
<!-- calculated.-->
<FlipMachineTime>
<xsl:choose>
<xsl:when test="./FlipPlanedOccupationTime > 0">
<xsl:value-of select="here is a complicated formula to compute"/>
</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</FlipMaschineTime>
</Cell>
</xsl:for-each>
Here I would like to have the sum of FlipMachineTime
for all encountered elements of type cell.
...........
</Objects>
</Data>
答案 0 :(得分:3)
您需要创建一个变量来保存已计算的FlipMachineTime节点。然后你可以总结节点集。以下是一些示例代码:
<xsl:variable name="flipMachineTimes">
<xsl:for-each select="/Data/Objects/Cell">
<FlipMachineTime>
<xsl:choose>
<xsl:when test="./FlipPlanedOccupationTime > 0">
<xsl:value-of select="here is a complicated formula to compute"/>
</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</FlipMachineTime>
</xsl:for-each>
</xsl:variable>
<total>
<xsl:variable name="myTotal" select="xalan:nodeset($flipMachineTimes)"/>
<xsl:value-of select="sum($myTotal/FlipMachineTime)"/>
</total>
要使其正常工作,请确保在样式表中包含xalan名称空间:
<xsl:stylesheet version="1.0" xmlns:xalan="http://xml.apache.org/xalan" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
答案 1 :(得分:0)
您最好使用http://exslt.org/common中的exslt:node-set()
,而不是特定的处理器实现 EXSLT ,在各种处理器上更加便携。在这种情况下,您需要:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exslt="http://exslt.org/common"
extension-element-prefixes="exslt">
<!-- staff -->
</xsl:stylesheet>
例如,在 Saxon 6.5 中,您应该可以像以下一样使用它:
<total>
<xsl:variable name="myTotal" select="exslt:node-set($flipMachineTimes)"/>
<xsl:value-of select="sum($myTotal/FlipMachineTime)"/>
</total>
如果将样式表版本设置为1.1,则更容易(应该如此):
<total>
<xsl:value-of select="sum(exslt:node-set($flipMachineTimes/FlipMachineTime))"/>
</total>
在看到你的要点之后,我认为你正在研究一个庞大而复杂的东西,这个问题在这里无法解决。您可能省略了太多细节。但是,如果只是显示一个值(在哪里???),我可以建议最后一件事。
尝试为每个单元格创建一个变量:
<Cell>
<xsl:attribute name="ExternalId">
<xsl:value-of select="@ExternalId"/>
</xsl:attribute>
<!-- calculated.-->
<FlipMaschinenlaufzeit>
<xsl:choose>
<xsl:when test="./FlipPlanbelegungszeit > 0">
<xsl:value-of select="$planbelegungszeit - (($planbelegungszeit * ($organisatorischeAusfallzeit div 100)) + ($planbelegungszeit * ($stoerungsbedingteUnterbrechungen div 100)) + ($planbelegungszeit * ($nebenzeit div 100)))"/>
</xsl:when>
<xsl:otherwise>0</xsl:otherwise>
</xsl:choose>
</FlipMaschinenlaufzeit>
</Cell>
<xsl:varible name="a">
<!-- paste here the code of xsl:choose inside the cell -->
</xsl:variable>
<!-- create other variables for each cell in the same way (use different names, like b, c ..) -->
<!-- after the last cell, display the sum -->
<xsl:value-of select="$a + $b + $c + ..."/>