2

我正在尝试将日期时间字符串转换为 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>

有没有办法让模板返回节点集而不是字符串或结果树片段?

4

1 回答 1

3

不,对于 XSLT 1.0,您需要在 http://exslt.org/func/elements/function/index.html 中使用类似http://exslt.org/func/elements/result/index.html扩展元素能够返回节点集而不是结果树片段。模板将始终返回结果树片段。

于 2015-07-15T10:32:53.237 回答