如何使用 xslt 计算平均值并在表中显示结果



我正在上一个xml类。 我是初学者,我正在尝试学习xslt 1.0。

我正在尝试弄清楚如何计算每个学生的平均值,并使结果显示在合适学生的表格中。目前,平均值计算不正确,我不知道如何让平均值显示在名称旁边的另一列中。 请保持你的答案简单,因为我是初学者。 谢谢!

结果应如下所示:

Student        Average
Jeff Cooper     70.0
Laureen Hanley  95.0
Peter Manning   74.3
Robert Shaw     78.7

这是我的 xml 文件:

<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet href="temptransfo.xsl" type="text/xsl" ?>
<university>
<student><name>Robert Shaw</name>
<course code="INF4830" note="90" />
<course code="INF1130" note="70" />
<course code="INF1330" note="76" /></student>
<student><name>Peter Manning</name>
<course code="INF4830" note="76" />
<course code="INF1130" note="73" />
<course code="INF1330" note="74" /></student>
<student><name>Jeff Cooper</name>
<course code="INF4930" note="40" />
<course code="INF1130" note="90" />
<course code="INF1330" note="80" /></student>
<student><name>Laureen Hanley</name>
<course code="INF4830" note="92" />
<course code="INF1330" note="98" /></student>
</university>

到目前为止,这就是我在xsl文件中所做的:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output 
    method="html"
    encoding="UTF-8"
    doctype-public="-//W3C//DTD HTML 4.01//EN"
    doctype-system="http://www.w3.org/TR/html4/strict.dtd"
    indent="yes" ></xsl:output>
<xsl:template match="/">
<html>
    <head>
    <title>Exercice 1</title>
</head>
<body>
    <table border ="1">
    <caption>Exercice 1</caption>
    <tr>
    <th>Student</th>
    <th>Average</th>
    </tr>
    <xsl:apply-templates select="university/student" >
    <xsl:sort select="substring-after(name,' ')" order="ascending"/>
    </xsl:apply-templates>
    </table>
</body>
</html>         
</xsl:template>
    <xsl:template match="student"> 
    <tr>
    <td>
    <xsl:value-of select="name" />
    </td>
    <td>
    <xsl:value-of select="format-number((sum(preceding::course/@note) div count (preceding::course)),'##.0')"/> 
    </td>
    </tr>
    </xsl:template>
</xsl:stylesheet>

我直言,您使用不正确缩进的 XML 输入使您感到困惑。否则你会看到coursestudent的孩子,平均值可以简单地计算为:

<xsl:value-of select="format-number(sum(course/@note) div count(course),'#.0')"/>

相关内容

  • 没有找到相关文章

最新更新