我有一个XML,其中我有一个包含标题,价格,作者,附加价格,艺术家,国家等属性的书籍列表.XML如下所示。
<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<additionalprice>12.90</additionalprice>
<year>1985</year>
</cd>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<additionalprice>10.90</additionalprice>
<year>1988</year>
</cd>
等等
我想编写一个应用于XML的XSLT 3.0来获取HTML。我想使用累加器来获取目录中的总书数。虽然有更好的方法,但我只是想将累加器用于练习目的,并在包含书籍的表格末尾打印总数,其中列是标题,作者和总价。为了填写标题和作者,我使用了每个。总价=价格+额外价格。我想使用iterate来提交总价。任何人都可以帮助我。我的不完整样式表如下所示:
`<?xml version="3.0" encoding="UTF-8"?>
<xsl:stylesheet version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<table border="2">
<tr bgcolor="#9acd32">
<th style="text-align:left">Title</th>
<th style="text-align:left">Artist</th>
<th style="text-align:left">Total Price</th>
</tr>
<xsl:accumulator name="total" as="xs:integer" initial-value="0" streamable="no">
<xsl:accumulator-rule match="title" select="$value+1"/>
</xsl:accumulator>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
<tr bgcolor="#FFA500">
<td> Total number of Books </td>
<td> <xsl:value-of select="accumulator-before('total')"/</td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>`
我不想使用流媒体
答案 0 :(得分:3)
如果您查看规范https://www.w3.org/TR/xslt-30/#accumulator-declaration,那么您会看到xsl:accumulator
是一个声明,这意味着您必须将其用作xsl:stylesheet
的顶级元素/子元素,而不是在模板内。
累加器值与节点相关联,函数如https://www.w3.org/TR/xslt-30/#func-accumulator-before&#34;返回上下文节点处所选累加器的预下降值&#34;所以在你的情况下,如果你有一个带有上下文节点/
的模板,那么在值之前访问累加器没有多大意义,你需要accumulator-after
值。
最后,您必须声明累加器将应用于默认模式
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:math="http://www.w3.org/2005/xpath-functions/math" exclude-result-prefixes="xs math"
version="3.0">
<xsl:mode use-accumulators="#all"/>
<xsl:accumulator name="total" as="xs:integer" initial-value="0" streamable="no">
<xsl:accumulator-rule match="title" select="$value + 1"/>
</xsl:accumulator>
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<table border="2">
<tr bgcolor="#9acd32">
<th style="text-align:left">Title</th>
<th style="text-align:left">Artist</th>
<th style="text-align:left">Total Price</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td>
<xsl:value-of select="title"/>
</td>
<td>
<xsl:value-of select="artist"/>
</td>
</tr>
</xsl:for-each>
<tr bgcolor="#FFA500">
<td> Total number of Books </td>
<td>
<xsl:value-of select="accumulator-after('total')"/>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>