我有以下xml结构
<head>
<item>
<f1>a</f1>
<f2>b</f2>
</item>
<item>
<f1>c</f1>
<f2>d</f2>
</item>
</head>
我希望项目节点被反转,即从最后到第一个。请帮助我使用xslt代码。
答案 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>