我正在尝试将日期时间字符串转换为 XSLT 1.0 中基于节点的日期时间。基本上我想从
31-12-2014
至:
<Date>
<Day>31</Day
<Month>12</Month>
<Year>2014</Year>
</Date>
为了实现这一点,我创建了这个模板:
<xsl:template name="ToDTNodes">
<xsl:param name="dateTimeString"/>
<xsl:variable name="date" select="substring($dateTimeString,1,10)"/>
<xsl:variable name="result">
<DtNode>
<Year>
<xsl:value-of select="substring($date,7,4)"/>
</Year>
<Month>
<xsl:value-of select="substring($date,4,2)"/>
</Month>
<Day>
<xsl:value-of select="substring($date,1,2)"/>
</Day>
</DtNode>
</xsl:variable>
<xsl:copy-of select="msxsl:node-set($result)/DtNode"/>
</xsl:template>
我尝试让模板返回一个节点/集而不是一个片段。请注意,我也试过这个没有/DtNode
最后。这将使我能够在不使用每个调用的节点集函数的情况下调用此模板。
可悲的是,我在尝试访问孩子时遇到了异常:
XslTransformException: To use a result tree fragment in a path expression, first convert it to a node-set using the msxsl:node-set() function
当我尝试这样做时:
<xsl:variable name="result">
<xsl:call-template name="ToDTNodes">
<xsl:with-param name="dateTimeString" select="$SomeNode/BeginDate" />
</xsl:call-template>
</xsl:variable>
<Value>
<xsl:value-of select="$result/Year"/>
</Value>
有没有办法让模板返回节点集而不是字符串或结果树片段?