我尝试创建一个XSL样式表,将XML代码中的值显示为HTML表。表标题显示在浏览器中,但根本没有值。
两个xsl:for-each select =""和xsl:value-of select =""链接到我的xml代码,我相信它是正确的,但也许它只是一个xml问题,不太确定。
<xsl:stylesheet version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform">
<xsl:output method = "html" doctype-system = "about:legacy-compat"/>
<xsl:template match = "/">
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<meta charset = "utf-8"/>
<link rel = "stylesheet" type = "text/css" href = "style.css"/>
</head>
<body>
<table border = "1" syle = "background-color:blue">
<thead>
<tr>
<th> Calories</th>
<th> Fat - Calories</th>
<th> Fat - Grams </th>
<th> Saturated Fat</th>
</tr>
</thead>
<xsl:for-each select="nutrition/item">
<tr>
<td><xsl:value-of select="calories/amount"/></td>
<td><xsl:value-of select="caloriesFat/amount"/></td>
<td><xsl:value-of select="gramsFat/amount"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
&#13;
<?xml version = "1.0"?>
<?xml-stylesheet type = "text/xsl" href = "nutrition.xsl"?>
<nutrition:items xmlns:nutrition = "http://www.grandmascookies.com/nutrition">
<title>Grandma White's Cookies</title>
<item>
<servingsize>
<amount> 1 </amount>
<unit> package </unit>
</servingsize>
<calories>
<amount> 260 </amount>
<unit> calories </unit>
</calories>
<caloriesFat>
<amount> 100 </amount>
<unit> grams </unit>
</caloriesFat>
<gramsFat>
<amount> 11 </amount>
<unit> grams </unit>
</gramsFat>
</item>
</nutrition:items>
&#13;
答案 0 :(得分:1)
你必须声明命名空间&#34; xmlns:nutrition&#34;并相应地使用它。
没有nutrition/item
,只有nutrition:items/item
您可以采取简短的方式尝试//item
(或者如果涉及其他名称空间,则使用/*:items/*:item
或//*:item
之类的通配符。
答案 1 :(得分:1)
您在XSLT中缺少命名空间,因此将其添加到样式表的根元素
<xsl:stylesheet version = "1.0"
xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
xmlns:nutrition = "http://www.grandmascookies.com/nutrition">
然后在xsl:for-each
:
<xsl:for-each select="nutrition:items/item"> <!-- here -->
<tr>
<td><xsl:value-of select="calories/amount"/></td>
<td><xsl:value-of select="caloriesFat/amount"/></td>
<td><xsl:value-of select="gramsFat/amount"/></td>
</tr>
您只提供了名称空间前缀nutrition
而没有元素items
。