所以我之前从未使用过XSLT,而且我只使用了最简单的XPath。 我有一个Xml元素“地球”,有两个属性Stamina和意志力。两者都包含数字。 我要做的是在“地球”这个词旁边显示这些属性中最少的值。 我似乎无法锻炼如何在XPath中调用函数。
这是我的XSLT
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
version="2.0">
<!--<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
-->
<xsl:output method="html" indent="yes"/>
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates select="//Rings"/>
</body>
</html>
</xsl:template>
<xsl:template match="//Rings">
<h2>Rings</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Earth</th>
<th>
<xsl:value-of select="fn:min(fn:number(Earth/@*))"/>
</th>
</tr>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:2)
MS Visual Studio预装了.NET XSLT处理器XslCompiledTransform,这是一个XSLT 1.0处理器。
另一方面,min()
是XPath 2.0中的标准函数,而不是XPath 1.0中的标准函数。 XSLT 1.0仅使用XPath 1.0。
解决问题的XSLT 1.0解决方案:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="Earth">
<xsl:value-of select=
"@*[not(. > ../@*)][1]"/>
</xsl:template>
</xsl:stylesheet>
将此转换应用于以下XML文档(因为您尚未提供!):
<Rings>
<Earth stamina="3" willpower="6"/>
</Rings>
产生了想要的正确结果:
3
在.NET中,可以使用第三方XSLT 2.0处理器,例如Saxon.NET或XQSharp。以下是XSLT 2.0解决方案:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="Earth">
<xsl:sequence select="min(@*)[1]"/>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:2)
另请注意,XPath 2.0中的min(number(@*))
不正确 - 您无法将number()函数应用于节点序列以获取一系列数字。它应该是min(@*/number())
。但是,输入未经验证,所有属性都是untypedAtomic,而min()函数会自动将untypedAtomic值转换为数字。但是,如果存在非数字属性,则自动转换将导致错误,而使用number()将生成NaN值,这将导致min()的结果也为NaN。如果您想要所有这些数字属性的最小值,请尝试min(@*[. castable as xs:double])
。
答案 2 :(得分:0)
min()
功能仅在XSLT 2.0中可用。您应该尝试使用2.0处理器(Saxon)。