使用這個XPath 2.0表達式:
sum(/items/item/(value * quantity))
下面是一個XSLT 2.0轉化,如驗證:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:sequence select="sum(/items/item/(value * quantity))"/>
</xsl:template>
</xsl:stylesheet>
當這個變換所提供的XML文檔應用:
<items>
<item>
<value>1.0</value>
<quantity>3</quantity>
</item>
<item>
<value>2.5</value>
<quantity>2</quantity>
</item>
<!-- ... -->
</items>
XPath表達式求值和該評價的結果是輸出:
8
說明:
在XPath 2.0它是合法的一個位置的步驟是
/(expression)
,
甚至
/someFunction(argumentList)
II。 XSLT 1.0溶液:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/*">
<xsl:call-template name="sumProducts">
<xsl:with-param name="pNodes" select="item"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="sumProducts">
<xsl:param name="pNodes" select="/.."/>
<xsl:param name="pAccum" select="0"/>
<xsl:choose>
<xsl:when test="not($pNodes)">
<xsl:value-of select="$pAccum"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="sumProducts">
<xsl:with-param name="pNodes" select="$pNodes[position() >1]"/>
<xsl:with-param name="pAccum" select=
"$pAccum + $pNodes[1]/value * $pNodes[1]/quantity"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
當這個變換所提供的XML文檔(上文)施加,再次有用,正確的結果產生:
8
待辦事項:這種使用FXSL library很容易解決一些問題。要調用的模板是transform-and-sum
。
可能重複的[XSLT總結兩個屬性的產物](http://stackoverflow.com/questions/1333558/xslt-to-sum-product-of-two-attributes) – PeerBr