将 XSLT 应用于 XML 后,我想显示 XML 中的项目名称和描述,我只显示表格标题,似乎 XML 中的名称和描述没有被拾取,有人知道为什么吗?与“tns:”命名空间有什么关系??谢谢!!
这是XML
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="./LittleStore.xsl"?>
<tns:store xmlns:tns="http://www.example.org/LittleStore/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.example.org/LittleStore/ LittleStore.xsd ">
<tns:item>
<name>Warm Hat</name>
<description>This hat is warm and will mike you stand out from the crowd.</description>
</tns:item>
<tns:manufacturer>
<manu_id>4234</manu_id>
<name>Toy Co.</name>
</tns:manufacturer>
</tns:store>
这是 XSLT:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:tns="http://www.example.org/LittleStore/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Store Catalog</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Item Name</th>
<th>Description</th>
</tr>
<xsl:for-each select="store/item">
<tr>
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="description"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>