0

我试图打印总和,但它打印每个值的总和。我想得到总和。如何在 xsl 中使用全局变量

作为获取 sum 的示例,我们可以简单地写sum = sum + value;value 是我们得到的新值,而 sum 是已经存在的值。我注意到它总是在 xsl 中被覆盖。

这是我使用的代码

<xsl:template match="Top">
  <xsl:if test="position() &lt;= 10">


    <xsl:variable name="items"
             select="/TopHoldings/TopHoldingsEntry
             [@Type='Company Name||Co||Se||F Weight (%)||Benchmark weight (%)']
             [@Date='8/31/2011']" />

    <xsl:variable name="totalMarks" 
         select="format-number(substring(substring-after(@Value,'||||'),1,10),'#.#') + 
                 format-number(substring(substring-after(@Value,'||||'),1,10),'#.#')"/>
    <xsl:value-of select="$totalMarks" />

  </xsl:if>
</xsl:template>

我在哪里做错了?xml代码

<TopHoldings Currency="xxx">
          <TopHoldingsEntry Type="CName||C||S||Fund Weight (%)||Benchmark weight (%)" Value="Ab||U||||1.2170000000000||" Date="8/31/2011" />
          <TopHoldingsEntry Type="CName||C||S||Fund Weight (%)||Benchmark weight (%)" Value="Acc||I||||1.2170000000000||" Date="7/31/2011" />
4

2 回答 2

2

您正在考虑 sum=sum+value 的事实表明您正在尝试通过编写循环并更改变量的值来像在过程语言中那样执行此操作。好吧,XSLT 不是一种过程语言,因此您需要换一种方式思考。

在 XSLT 2.0 中,这很简单

format-number(
   sum(for $x in TopHoldingsEntry/@Type return number(substring-after('||||'))),
   ....)

在 XSLT 1.0 中,这有点困难。我会使用“兄弟递归”来做到这一点:

<xsl:template match="TopHoldingsEntry">
  <xsl:param name="total" select="0"/>
  <xsl:choose>
    <xsl:when test="following-sibling::*">
      <xsl:apply-templates select="following-sibling::*[1]">
         <xsl:with-param name="total" select="$total + number(substring-after(....))"/>
      </xsl:apply-templates>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="$total"/>
    </xsl:otherwise>
  <xsl:choose>
</xsl:template>

然后用<xsl:apply-templates select="TopHoldingsEntry[1]"/>

于 2013-01-31T14:01:18.163 回答
0

在格式化数字之前求和

<xsl:variable name="total">
    <xsl:value-of select="number(substring(substring-after(@Value,'||||'),1,10))+
       number(substring(substring-after(@Value,'||||'),1,10))"/>
</xsl:variable>
<xsl:variable name="totalMarks" select="format-number($total,1,10),'#.#')"/>
于 2013-01-31T11:06:06.027 回答