需要从xml中的每组标签中拉取数据。现在我只得到每一行的第一组数据。这是我从中提取数据的 XML
<message>
<Data>
<Name>John Doe</Name>
<Date>2/14/2012</Date>
<Phone>1234567</Phone>
</Data>
<Data>
<Name>Jane Doe</Name>
<Date>4/19/2012</Date>
<Phone>2345678</Phone>
</Data>
<Data>
<Name>Mike Doe</Name>
<Date>12/14/2011</Date>
<Phone>3456789</Phone>
</Data>
</message>
我正在使用的 XSLT 就是这个。
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" >
<xsl:output method="html" version="1.1" encoding="iso-8859-1" />
<xsl:template match="/message">
<html>
<body>
<table border="1">
<tr>
<th ColSpan="4">Person</th>
</tr>
<tr>
<th>Name</th>
<th>Date</th>
<th>Phone</th>
</tr>
<xsl:for-each select="//Data">
<tr>
<td>
<xsl:value-of select="//Name" />
</td>
<td>
<xsl:value-of select="//Date" />
</td>
<td>
<xsl:value-of select="//Phone" />
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我的输出仅显示所有三行的 John Doe 信息。