有没有办法在XSLT中创建for-each循环,它会添加它循环的每个节点的值?
例如,有没有办法创建一个循环来将价格节点加在一起以获得总价?
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
<cd>
<title>Greatest Hits</title>
<artist>Dolly Parton</artist>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<year>1982</year>
</cd>
<cd>
<title>Still got the blues</title>
<artist>Gary Moore</artist>
<country>UK</country>
<company>Virgin records</company>
<price>10.20</price>
<year>1990</year>
</cd>
以下是我尝试使用的当前代码来提取价格并将其保存为变量:
<xsl:template name="Amount-Calc">
<xsl:value-of select="sum(//cd[country = 'UK'])"/>>
<xsl:variable name="FullPrice" select="price" />
<xsl:variable name="dollars" select="substring($FullPrice,1,2)" />
<xsl:variable name="cents" select="substring($FullPrice,3,2)" />
</xsl:template>
我不确定如何将全价存储为变量
我的预期输出是:
<price=20.10/>
然而,当我进行计算时,我得到<price=NaN/>
答案 0 :(得分:1)
有没有办法在XSLT中创建一个for-each循环,它将添加到 它循环的每个节点的值?
这既不可能也不必要。
这是不可能的,因为xsl:for-each
不是循环。
没有必要,因为您可以使用父节点上下文中的sum(cd/price)
之类的表达式对节点求和(从示例中删除)。
给出格式良好的 XML输入:
<root>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
<cd>
<title>Greatest Hits</title>
<artist>Dolly Parton</artist>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<year>1982</year>
</cd>
<cd>
<title>Still got the blues</title>
<artist>Gary Moore</artist>
<country>UK</country>
<company>Virgin records</company>
<price>10.20</price>
<year>1990</year>
</cd>
</root>
以下样式表:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/root">
<total-price>
<xsl:value-of select="format-number(sum(cd[country = 'UK']/price), '0.00')"/>
</total-price>
</xsl:template>
</xsl:stylesheet>
将返回:
<?xml version="1.0" encoding="UTF-8"?>
<total-price>20.10</total-price>