我有一个XSLT,我在其中定义了一个函数。 变换器说任何函数都必须有它的命名空间,所以我在XSLT的头部声明了一个虚拟命名空间,但现在这个命名空间也出现在输出的根标签中! 无法猜测如何避免这种情况...
示例:
input.xml中
<something>
<mytag> test </mytag>
</something>
test.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://function" version="2.0" >
<xsl:output method="xml" indent="yes" />
<xsl:function name="fn:trim" >
<xsl:param name="pStr"/>
<xsl:value-of select="replace($pStr,'^\s*(.+?)\s*$', '$1')"/>
</xsl:function>
<xsl:template match="something">
<root><xsl:value-of select="fn:trim(mytag)" /></root>
</xsl:template>
</xsl:stylesheet>
out.xml
<?xml version="1.0" encoding="UTF-8"?>
<root xmlns:fn="http://function">test</root>
我想从输出中删除xmlns:fn="http://function"
标记中的<root>
。
不知道是否重要,但我使用的是Saxon-HE-9.4。
答案 0 :(得分:3)
只需添加<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fn="http://function" version="2.0" exclude-result-prefixes="fn">
即可。另请注意,fn
通常用于XPath函数名称空间,因此您可能希望使用不同的前缀以避免代码的任何用户混淆。