我在获取XSLT文件以显示其XSLT函数方面遇到了问题,经过蓝图的一些试验和错误/调试后,我的问题与我的命名空间和(可能)我的XSD有关文件。我花了一个小时与我的教授试图找到错误/问题,但无济于事。
XML文件
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="movies.xsl"?>
<movieRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.example.com/comicbooks/movies/ns"
xsi:schemaLocation="http://www.example.com/comicbooks/movies/ns movies.xsd">
<movie>
<movieTitle>Captain America: Civil War</movieTitle>
<genre>Action, Adventure, Sci-Fi</genre>
<rating>8.13</rating>
<length>147 min</length>
<releaseDate>May 6th, 2016</releaseDate>
</movie>
</movieRoot>
XSD档案
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.example.com/comicbooks/movies/ns"
targetNamespace="http://www.example.com/comicbooks/movies/ns">
<xs:element name="movieRoot">
<xs:complexType>
<xs:sequence>
<xs:element name="movie" minOccurs="1" maxOccurs="unbounded" >
<xs:complexType>
<xs:sequence>
<xs:element name="movieTitle" type="xs:string" />
<xs:element name="genre" type="xs:string" />
<xs:element name="rating" type="xs:string" />
<xs:element name="length" type="xs:string" />
<xs:element name="releaseDate" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
XSLT文件
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<link rel="stylesheet" type="text/css" href="movies.css" />
</head>
<body>
<h1><xsl:value-of select= "movieRoot/movie/releaseDate" /></h1>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:1)
您的XSLT没有考虑XML的默认命名空间。
在xsl:stylesheet
元素上声明名称空间前缀:
xmlns:ns="http://www.example.com/comicbooks/movies/ns"
并更改xsl:value-of
以使用新定义的命名空间
前缀:
<xsl:value-of select= "ns:movieRoot/ns:movie/ns:releaseDate" />
然后,您的XML将通过XSLT呈现,以h1
显示日期。
备注强>: