我希望对for-each生成的表进行排序。确定排序的数据不包含在for-each节点集中,而是包含在其中。节点集和节点集之间存在common_id。我已经尝试将common_id分配给for-each中的局部变量,但排序无法看到它。有没有办法实现这个目标?以下是一些例子。
示例XML
<root>
<seq>
<common_id>B1U3</common_id>
<seq_data>1</seq_data>
</seq>
<seq>
<common_id>R3D</common_id>
<seq_data>3</seq_data>
</seq>
<seq>
<common_id>Y3110W</common_id>
<seq_data>2</seq_data>
</seq>
<detail>
<common_id>Y3110W</common_id>
<other_data>spame</other_data>
</detail>
<detail>
<common_id>B1U3</common_id>
<other_data>spamo</other_data>
</detail>
<detail>
<common_id>R3D</common_id>
<other_data>spama</other_data>
</detail>
</root>
必需的输出
____________________________
¦Common Id ¦Other Data¦
¦---------------¦----------¦
¦B1U3 ¦spama ¦
¦Y3110W ¦spame ¦
¦R3d ¦spamo ¦
¦_______________¦__________¦
当前的XSLT
<xsl:template match="/">
<table>
<tr>
<td>Common ID</td>
<td>Other Data</td>
</tr>
<xsl:for-each select="detail">
<xsl:variable name="local_id" select="common_id"/>
<xsl:sort select="../seq[common_id = $local_id]/seq_data"/>
<tr>
<td><xsl:value-of select="common_id"/></td>
<td><xsl:value-of select="other_data"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
答案 0 :(得分:1)
如果使用current()
函数而不是变量,它是否有效?你也可能想要排序数字而不是词典:
<xsl:sort select="../seq[common_id = current()/common_id]/seq_data"
data-type="number"/>