我有XML所以:
<Root>
<ID>NSA</ID>
<Groups>
<Group>
<ID>Europe</ID>
<Levels>
<Level>
<RootLevelID>Cases B</RootLevelID>
<Faults>
<Fault>
<FaultID>case 1</FaultID>
</Fault>
<Fault>
<FaultID>case 2</FaultID>
</Fault>
</Faults>
</Level>
</Levels>
</Group>
</Groups>
</Root>
为了便于阅读,我使用以下XSL将其设为html:
<xsl:stylesheet version="1.0">
<xsl:output omit-xml-declaration="yes" method="html"/>
<xsl:template match="/">
<html>
<head>
<title>Output</title>
</head>
<body>
<xsl:for-each select="//Root">
<Table border="1">
<Th>
<xsl:value-of select="ID"/>
</Th>
<Tr>
<td>
<xsl:for-each select="current()//Group">
<xsl:for-each select="current()//Level">
<tr>
<td>
<xsl:value-of select="current()//RootLevelID"/> Level name <xsl:for-each
select="current()//Fault"> <td>
<xsl:value-of select="FaultID"/> Fault name </td> </xsl:for-each>
</td>
</tr>
</xsl:for-each>
</xsl:for-each>
</td>
</Tr>
</Table>
<br/>
<br/>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
但是我只会得到第一个Fault-member,而不是所有,甚至是它内部for-each循环。 它只输出“案例1”。
然而,由于这是更大的上下文的一部分,前两个for-each循环(Root和Group)正确迭代xml中的所有组成员。
也许嵌套的for-each循环在XPATH中不能很好地工作?
答案 0 :(得分:1)
正如@Tim C所说,你的xslt并不优雅,但确实有效。作为一个注释,当您可以按文档顺序轻松处理xml时,我不确定为什么要使用current():
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" method="html"/>
<xsl:template match="/">
<html>
<head>
<title>Output</title>
</head>
<body>
<xsl:for-each select="/Root">
<table border="1">
<th>
<xsl:value-of select="ID"/>
</th>
<tr>
<td>
<xsl:for-each select="Groups/Group">
<xsl:for-each select="Levels/Level">
<tr>
<td>
<xsl:value-of select="RootLevelID"/>
<xsl:text> Level name</xsl:text>
<xsl:for-each select="Faults/Fault">
<td>
<xsl:value-of select="FaultID"/>
<xsl:text>Fault name </xsl:text>
</td>
</xsl:for-each>
</td>
</tr>
</xsl:for-each>
</xsl:for-each>
</td>
</tr>
</table>
<br/>
<br/>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>