我有一些XML如下;
<risk>
<driver driverId="2">
<vehicleUse>M</vehicleUse>
</driver>
<driver driverId="3">
<vehicleUse>F</vehicleUse>
</driver>
<driver driverId="4">
<vehicleUse>I</vehicleUse>
</driver>
</risk>
我正在使用 XSLT(v1.0,.NET 实现)将每个 vehicleUse 转换为一个数字,然后得到这些数字的总和。车辆使用被翻译为 M=3、F=2 和 I=1。一个额外的复杂性是,对于 ID 为 3 的驱动程序,这些值乘以 10,而对于驱动程序 4,则乘以 100。因此,在上面的示例中,总数为 3 + 20 + 100 = 123。
我已经像这样在我的 XSLT 文件中定义了一个模板;
<xsl:template name="getVehicleUseScore">
<xsl:param name="driverId" />
<xsl:param name="vehicleUse" />
<!-- Implementation left out for brevity -->
</xsl:template>
然后 XSLT 文件的其余部分调用模板;
<xsl:template match="risk">
<vehicleUseScore>
<xsl:for-each select="driver">
<xsl:call-template name="getVehicleUseScore">
<xsl:with-param name="driverId" select="@driverId" />
<xsl:with-param name="vehicleUse" select="vehicleUse" />
</xsl:call-template>
</xsl:for-each>
</vehicleUseScore>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
结果是我得到了文本“320100”,它只是将 3、20 和 100 连接在一起,这至少证明了 getVehicleUseScore 模板有效。
我想将 getVehicleUseScore 的结果传递给 sum() 函数,但我不知道如何。我尝试了以下方法;
<xsl:value-of select="sum(getVehicleUseScore(@driverId, vehicleUse))" />
但是 XSLT 编译器声明“getVehicleUseScore() 是一个未知的 XSLT 函数”。
有没有办法做到这一点?