我正在尝试使用XSLT转换我的XML文件并且错误'无法解析数据源(我的XML路径)请在转换之前修复它
有人能告诉我这个错误是什么意思,为什么会出现?我该如何解决?
非常感谢
我的xml如下:
<?xml version="1.0" encoding="UTF-8"?>
<videoclub>
<pelicula>
<titulo>pelicula1
</titulo>
<director>myself
</director>
<duracion>30 minutos
</duracion>
</pelicula>
<pelicula>
<titulo>pelicula2
</titulo>
<director>otrapersona
</director>
<duracion>20 minutos
</duracion>
</pelicula>
</videoclub>
这是我的xslt:
<?xml version="1.0" encoding="UTF-8"?>
<!-- New XSLT document created with EditiX XML Editor (http://www.editix.com) at Thu Mar 15 12:10:43 CET 2018 -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
<body>
<h2>pelculas
</h2>
<table>
<tr>
<th>titulo</th>
<th>director</th>
</tr>
<xsl:for-each select="videoclub/pelicula">
<tr>
<td><xsl:value-of select="titulo"/></td>
<td><xsl:value-of select="director"/></td>
</tr>
</xsl:for-each>
</table>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>