gpt4 book ai didi

xml - 如何总结 XSL 中 for-each 循环的结果?

转载 作者:数据小太阳 更新时间:2023-10-29 01:51:58 26 4
gpt4 key购买 nike

我是 XSL 的新手,所以我真的不知道该怎么做。我有一个 for-each 语句,它对“单元格”类型的每个元素进行一些计算。我怎样才能总结结果并将它们存储在一个变量中以便我可以显示它?我已经包含了一部分代码。

我希望有人知道这个问题的解决方案。感谢您投入时间和精力!

<?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 &gt; 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>

最佳答案

您需要创建一个变量来保存您计算出的 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">

关于xml - 如何总结 XSL 中 for-each 循环的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6154221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com