通过XSLT

时间:2017-10-25 17:09:45

标签: xslt xslt-1.0 xslt-2.0

我有以下xml结构

<head>
  <item>
   <f1>a</f1>
   <f2>b</f2>
  </item>
  <item>
   <f1>c</f1>
   <f2>d</f2>
  </item>
</head>

我希望项目节点被反转,即从最后到第一个。请帮助我使用xslt代码。

1 个答案:

答案 0 :(得分:0)

在XSLT 2.0中,

this.setState({state_variable: response})

在XSLT 1.0中,

<xsl:template match="head">
  <head>
    <xsl:copy-of select="reverse(item)"/>
  </head>
</xsl:template>