我在某种情况下将XSLT和XML结合起来有问题而且我遇到了问题,下面是我的问题的一个例子:
XML:
<a>
<x>
<y testname="test1">
<object elementname="Name" elementvalue="true" elementvalue1="ABC" elementvalue2="ADF">
<comparisonresult>false</comparisonresult>
</object>
</y>
</x>
</a>
XSLT:
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<font face="Arial">
<h2>HEADINGY</h2>
<h4>Process 1</h4>
<h4>More Process</h4>
<h4>Additional </h4>
<table border="1">
<tr bgcolor="#dccdc">
<th align="center">T1</th>
<th align="center">T2</th>
<th align="center">T3</th>
</tr>
</table>
<h2>Main</h2>
<xsl:for-each select="a/x/y">
<h3>
<xsl:value-of select="@testname" />
</h3>
<h4>Heading 1</h4>
<table border="1" style="display:inline">
<tr bgcolor="#CECEF6">
<th align="center">Item1</th>
<th align="center">Item2</th>
<th align="center">Item3</th>
</tr>
<xsl:for-each select="object">
<tr>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@elementname" />
</td>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@elementvalue1" />
</td>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@elementvalue2" />
</td>
</tr>
</xsl:for-each>
</table>
</xsl:for-each>
</font>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
如果您将这两个输入http://www.w3schools.com/xml/tryxslt.asp?xmlfile=simple&xsltfile=simple,您将获得预期输出。当我将以下内容添加到XML时,问题就出现了,所以它看起来像:
<a>
<x>
<y testname="test1">
<object elementname="Name" elementvalue="true" elementvalue1="ABC" elementvalue2="ADF">
<comparisonresult>false</comparisonresult>
</comparisonobject>
</y>
<x>
<t testname="ComparisonResult">
<step stepname="Add x" stepresult="Add x">
<result>true</result>
</step>
</t>
</a>
和相应的xslt:
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<font face="Arial">
<h2>HEADINGY</h2>
<h4>Process 1</h4>
<h4>More Process</h4>
<xsl:for-each select="a/x/t">
<xsl:for-each select="testname">
<h4>Additional </h4>
<table border="1">
<tr bgcolor="#dccdc">
<th align="center">T1</th>
<th align="center">T2</th>
<th align="center">T3</th>
</tr>
<xsl:for-each select="stepname">
<tr>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@stepname" />
</td>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@step result" />
</td>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@result" />
</td>
</table>
<h2>Main</h2>
<xsl:for-each select="a/x/y">
<h3>
<xsl:value-of select="@testname" />
</h3>
<h4>Heading 1</h4>
<table border="1" style="display:inline">
<tr bgcolor="#CECEF6">
<th align="center">Item1</th>
<th align="center">Item2</th>
<th align="center">Item3</th>
</tr>
<xsl:for-each select="object">
<tr>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@elementname" />
</td>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@elementvalue1" />
</td>
<td bgcolor="#F2F5A9">
<xsl:value-of select="@elementvalue2" />
</td>
</tr>
</xsl:for-each>
</table>
</xsl:for-each>
</font>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
我只是得到一个空白页面。 我知道这里有很多要消化的,但我真的卡住了!
由于
答案 0 :(得分:0)
您的<xsl:for-each select="a/x/t">
与您的文档结构不匹配 - 它应该是<xsl:for-each select="a/t">
...但您的嵌套for-each
还有其他问题。
使用模板可以更好地完成您要实现的目标。我稍后会添加一个例子。