替换功能在xslt 2.0中不起作用
xslt看起来像这样:
<xsl:stylesheet version='2.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
xmlns:fn='http://www.w3.org/2005/xpath-funcations'>
<xsl:output
method="xml"
encoding="utf-8"
media-type="application/xml"
/>
<xsl:template match='/'>
<items>
<xsl:apply-templates select="response/result/doc"/>
</items>
</xsl:template>
<!-- search results xslt -->
<xsl:template match="doc">
<xsl:variable name="ShortDescription" select="str[@name = 'ShortDescription']"/>
<shortdescription><xsl:value-of select="replace($ShortDescription, '&amp;', '&')" disable-output-escaping="yes"/></shortdescription>
</xsl:template>
</xsl:stylesheet>
当我们使用替换函数时,我们会收到此错误:
我正在检查在线xslt测试仪上的替换功能,有些工具会出错,有些不是为什么会这样?
www.utilities-online.info/xsltransformation/#.U-inrWNknIU ==> given error
http://www.xsltcake.com/ ==> given error
http://xslt.online-toolz.com/tools/xslt-transformation.php ==> given error
http://xslttest.appspot.com/ ==> not given error.its working fine.
http://www.w3schools.com/xsl/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog ==> given error
我正在使用solr 4.0,xslt 2.0和xml 1.0
请告诉我如何在xslt 2.0中处理替换功能
提前致谢
答案 0 :(得分:2)
www.utilities-online.info/xsltransformation /#.U-inrWNknIU ==&gt;给出错误
该工具使用XSLT 1.0(javax.xml.transform)
http://www.xsltcake.com/ ==&gt;给出错误
该工具使用XSLT 1.0(浏览器版本,即Firefox中的Transformiix)
http://xslt.online-toolz.com/tools/xslt-transformation.php ==&gt;给出错误
该工具使用XSLT 1.0(libxsl)
http://xslttest.appspot.com/ ==&gt;没有给出错误。工作正常。
该工具使用XSLT 2.0(Saxonica的SAXON 9.3.0.5)
http://www.w3schools.com/xsl/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog ==&gt;给出错误
该工具使用XSLT 1.0(浏览器版本,即Firefox中的Transformiix)
正如其他人已经评论过的那样,函数fn:replace
是一个在XSLT 2.0中添加的函数(实际上,XPath 2.0,它是XSLT 2.0的一部分)。使用2.0处理器(例如Saxon,Exselt或Altova)运行样式表,您应该没问题。如何为产品配置它取决于它是否支持使用/插入不同的处理器。
注意:您用于fn
的命名空间是错误的。您不需要指定该命名空间(它是隐式的),但如果您这样做,请使用xmlns:fn="http://www.w3.org/2005/xpath-functions"
。