嗨,我正在使用 xslt 转换器并使用 xsl 文件正在使用函数 ex:date-time() 它在 Anypoint studio 中运行,但是当我尝试在 cloudHub 中运行时,它抛出错误
找不到名为 { http的匹配 0 参数函数://exslt.org/dates-and-times }date-time()。没有本地名称日期时间的撒克逊扩展函数 (net.sf.saxon.trans.XPathException)
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs ">
<xsl:output method="xml" encoding="UTF-8" indent="yes" />
<xsl:template match="/">
<xsl:variable name="var1" select="." />
<_ord:testOrder
xmlns:ex="http://exslt.org/dates-and-times" extension-element-prefixes="ex"
<xsl:attribute name="xsi:schemaLocation"
namespace="http://www.w3.org/2001/XMLSchema-instance">
<xsl:value-of select="test" />
</xsl:attribute>
<_wcf:ApplicationArea>
<_oa:CreationDateTime><xsl:value-of select="ex:date-time()"/></_oa:CreationDateTime>
</_wcf:ApplicationArea>
</_ord:testOrder>
</xsl:template>
</xsl:stylesheet>