xslt will have the problem of converting xml in namespace to html

Add the corresponding namespace to the xslt namespace,
for example

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:menu="http://www.example.org/menu" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	>
	<xsl:output method="html"/>
	<xsl:template match="/">
		<html>
			<head>
					<title>菜单系统</title>
			</head>
			<body>
					<table>
						<tr>
							<th>种类</th>
							<th>名字</th>
							<th>价格</th>
						</tr>
						<xsl:for-each select="menu:menu/menu:kinds">
							<tr>
								<td><xsl:value-of select="menu:name"></xsl:value-of></td>
								<xsl:for-each select="menu:commodity">
									<tr>
										<td></td>									
										<td><xsl:value-of select="menu:name"></xsl:value-of></td>
										<td><xsl:value-of select="menu:price"></xsl:value-of></td>
									</tr>
								</xsl:for-each>
							</tr>
						</xsl:for-each>
						<xsl:for-each select="menu:menu/menu:activity">
							<tr>
								<td><xsl:value-of select="menu:aname"></xsl:value-of></td>
								<td><xsl:value-of select="menu:des"></xsl:value-of></td>
							</tr>
						</xsl:for-each>
					</table>
				</body>
		</html>
	</xsl:template>
</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="menu.xsl" type="text/xsl" ?>
<menu:menu
	xmlns:menu="http://www.example.org/menu" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.example.org/menu menu.xsd"
	>
	
	<menu:kinds>
		<menu:name>丝滑奶茶</menu:name>
		<menu:commodity>
			<menu:cname shorter='原奶'>原味奶茶</menu:cname>
			<menu:price number="1">8 10</menu:price>
		</menu:commodity>
		
		<menu:commodity>
			<menu:cname shorter='草奶'>草莓奶茶</menu:cname>
			<menu:price number="1">8 10</menu:price>
		</menu:commodity>
		
		<menu:commodity>
			<menu:cname shorter='芋奶'>香芋奶茶</menu:cname>
			<menu:price number="1">8 10</menu:price>
		</menu:commodity>
		
	</menu:kinds>
	
	<menu:kinds>
		<menu:name>香醇咖啡</menu:name>
		<menu:commodity>
			<menu:cname shorter='卡奇'>卡布奇诺</menu:cname>
			<menu:price number="1">6 8</menu:price>
		</menu:commodity>
		
		<menu:commodity>
			<menu:cname shorter='摩卡'>摩卡咖啡</menu:cname>
			<menu:price number="1">6 8</menu:price>
		</menu:commodity>
	</menu:kinds>
	
	<menu:kinds>
		<menu:name>蜜汁甜筒</menu:name>
		<menu:commodity>
			<menu:cname shorter='单球'>单球甜筒</menu:cname>
			<menu:price number="1">4 6</menu:price>
		</menu:commodity>
		
		<menu:commodity>
			<menu:cname shorter='三拼'>三拼甜筒</menu:cname>
			<menu:price number="1">4 6</menu:price>
		</menu:commodity>
	</menu:kinds>
	
	<menu:activity>
		<menu:aname>店长推荐</menu:aname>
		<menu:des>甜筒降价</menu:des>
	</menu:activity>
	
</menu:menu>

Reference Forum

Guess you like

Origin blog.csdn.net/qq_43416157/article/details/106940636