以下是我编写的 XSL样式表的摘录。 它说我的'.xsl'格式正确但它不知道从XML中检索值,而只是粘贴标题和表格标题。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:template match="/" >
<html>
<head>
<title>GlenMark Pharma</title>
</head>
<h1 align="center"><font face="Monotype Corsiva" color="red">GlenMarkPharma</font></h1>
<body>
<table>
<tbody>
<tr>
<th>ID</th>
<th>ENAME</th>
<th>Mobile</th>
<th>EMAIL</th>
<th>PWD</th>
</tr>
<xsl:for-each select="employees/employee">
<tr>
<td><xsl:value-of select="@empID" /></td>
<td><xsl:value-of select="name" /></td>
<td><xsl:value-of select="mobile" /></td>
<td><xsl:value-of select="email" /></td>
<td><xsl:value-of select="pwd" /></td>
</tr>
</xsl:for-each>
</tbody>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
以下是我的XML文档:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="MyfirstXsl.xsl"?>
<!DOCTYPE employees SYSTEM "Mydtd.dtd">
<me:employees xmlns:me="pavitar.dua@gmail.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="pavitar.dua@gmail.com Mycomplex.xsd">
<me:employee empID="EMP101">
<me:name>Vicky</me:name>
<me:mobile>9870582356</me:mobile>
<me:email>vicky@gmail.com</me:email>
<me:pwd>&defPWD;</me:pwd>
</me:employee>
</me:employees>
我也尝试过写作:
<xsl:for-each select="employees/employee">
<tr>
<td><xsl:value-of select="@empID" /></td>
<td><xsl:value-of select="me:name" /></td>
在XSL中,因为我在XML Doc 中有一个命名空间的别名。但是它给了我一个错误的无效预修复。我不知道我做错了什么。
答案 0 :(得分:2)
在XSLT中添加两个名称空间声明:
xmlns:me="pavitar.dua@gmail.com"
表示输入标记; xmlns="http://www.w3.org/1999/xhtml"
表示生成的标记。然后更改您的XSLT以使用me
前缀表示源代码,如下所示:
<xsl:for-each select="me:employees/me:employee">
<tr>
<td><xsl:value-of select="@empID" /></td>
<td><xsl:value-of select="me:name" /></td>
<td><xsl:value-of select="me:mobile" /></td>
<td><xsl:value-of select="me:email" /></td>
<td><xsl:value-of select="me:pwd" /></td>
</tr>
</xsl:for-each>
另外,请考虑使用“更多XSLT原生”构造:
<xsl:apply-templates/> <!-- instead of the for-each --!>
…
<xsl:template match="me:employee">
<!-- include the table row here --!>
</xsl:template>
您将获得更多功能的XSLT设计。请记住,XSLT应该是声明性的而不是程序性的。
答案 1 :(得分:0)
您的XSLT不知道XML中使用的命名空间,即“pavitar.dua@gmail.com”。这是修改后的XSL。刚刚添加
的xmlns:我= “pavitar.dua@gmail.com”
到您的XSLT并验证它正在运行
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:me="pavitar.dua@gmail.com" version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
<xsl:template match="/" >
<html>
<head>
<title>GlenMark Pharma</title>
</head>
<h1 align="center"><font face="Monotype Corsiva" color="red">GlenMarkPharma</font></h1>
<body>
<table>
<tbody>
<tr>
<th>ID</th>
<th>ENAME</th>
<th>Mobile</th>
<th>EMAIL</th>
<th>PWD</th>
</tr>
<xsl:for-each select="me:employees/me:employee">
<tr>
<td><xsl:value-of select="@empID" /></td>
<td><xsl:value-of select="name" /></td>
<td><xsl:value-of select="mobile" /></td>
<td><xsl:value-of select="email" /></td>
<td><xsl:value-of select="pwd" /></td>
</tr>
</xsl:for-each>
</tbody>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>