我正在编写一个类似于XPath 2.0 fn:max函数的XPath函数。一个返回多个参数最大值的函数。
经过大量搜索,我发现了这种方式:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:math="http://exslt.org/math"
xmlns:exslt="http://exslt.org/common"
xmlns:func="http://exslt.org/functions"
xmlns:my="http://myns.com"
extension-element-prefixes="math exslt func">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<root>
<xsl:value-of select="my:max(1,2)"/>
</root>
</xsl:template>
<func:function name="my:max">
<xsl:param name="e1"/>
<xsl:param name="e2"/>
<xsl:variable name="x">
<val><xsl:value-of select="$e1"/></val>
<val><xsl:value-of select="$e2"/></val>
</xsl:variable>
<func:result select="math:max(exslt:node-set($x)/val)"/>
</func:function>
</xsl:stylesheet>
是否可以这样做,以便我的最大功能可以占用更多元素?
干杯
扬
答案 0 :(得分:1)
我没有在我面前的XSLT 1.0书,但我认为这里的关键是你可以选择'节点集'并设置那些等于你的参数变量,而不是只有一个节点参数。 这是一个粗略的猜测:
<xsl:template match="/">
<root>
<xsl:call-template name="max">
<xsl:with-param name="values">
<val>1</val>
<val>2</val>
<val>3</val>
</xsl:with-param>
</xsl:call-template>
</root>
</xsl:template>
<func:function name="my:max">
<xsl:param name="x"/>
<func:result select="math:max($x/val/*)"/>
</func:function>
编辑:重新阅读问题以及一些XSLT 1.0指南。它应该类似于另一个答案,仅略微简化。请注意,如果您想要的数字来自XML数据,您可以使用select=
上的xsl:with-param
属性自动选择要比较的节点。
答案 1 :(得分:0)
大概你可以指定xml(对于节点集)作为输入参数吗?
我在exslt上没有“up”,而是使用msxsl(仅适用于node-set
函数,也是exslt):
<xsl:template name="max">
<xsl:param name="values"/>
<xsl:for-each select="msxsl:node-set($values)/val">
<xsl:sort data-type="number" order="descending"/>
<xsl:if test="position()=1">
<xsl:value-of select="."/>
</xsl:if>
</xsl:for-each>
</xsl:template>
...
<xsl:call-template name="max">
<xsl:with-param name="values">
<val>13</val>
<val>123</val>
<val>18</val>
</xsl:with-param>
</xsl:call-template>
答案 2 :(得分:0)
感谢您的想法。
你帮我理解了一切。但我的初衷是获得一个 方便的XPath函数,适用于xsl变量。
<!-- works with XPath 2.0 -->
<xst:template match="img/@height">
<xsl:variable name="$maximageheight" select="200">
<xsl:value-of select="fn:max( $maximageheight , . )"/>
</xsl:template>
<!-- until now the only way I see to do the same in XSL 1.0 -->
<xst:template match="img/@height">
<xsl:variable name="$maximageheight" select="200">
<xsl:call-template name="max">
<xsl:with-param name="values">
<val>$maximageheight</val>
<val><xsl:value-of select="."/></val>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
对于固定数量的参数,可以实现exslt函数:
<func:function name="my:max" xmlns:func="http://exslt.org/functions">
<xsl:param name="e1"/>
<xsl:param name="e2"/>
<xsl:variable name="x">
<val><xsl:value-of select="$e1"/></val>
<val><xsl:value-of select="$e2"/></val>
</xsl:variable>
<func:result select="math:max(exslt:node-set($x)/val)"/>
</func:function>
但我没有看到通过可变数量的参数实现它的方法。