如何使用xslt计算平均值并在表

时间:2017-04-13 17:39:23

标签: xml xslt xpath xslt-1.0

我正在上一个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>

1 个答案:

答案 0 :(得分:2)

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

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