如果您使用的是 PHP,则一种解决方案如下:
指向catalog.xml
一个 PHP 文件,该文件根据引用 URL 提供正确的 XSL 文件。
您可以将此想法移植到其他服务器端脚本,例如 Ruby、ASP、JSP 等。
目录.xml
在catalog.xml
中,不是指向 XSL 文件,而是指向 PHP 文件。在本例中,PHP 文件是catalog.php
.
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="catalog.php"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
目录.php
catalog.php
根据引用 URL 提供正确的 XSL 文件。
<?php
// Output the correct Content-Type, so that browsers know
// to treat this file as an XSL document
header("Content-Type: text/xsl; charset=utf-8");
// Example $referer: http://example.com/catalog.xml?download-links-catalog.xsl
$referer = parse_url($_SERVER['HTTP_REFERER']);
// Example $query: download-links-catalog.xsl
$query = $referer['query'];
// If the file exists, serve up $query.
// If not, serve up the default presentation-list-catalog.xsl.
$xslFile = file_exists($query) ? $query : "presentation-list-catalog.xsl";
echo file_get_contents($xslFile);
?>
为简洁起见,此示例不包括一些安全检查。例如,您应该验证它$query
实际上是一个 XSL 文件。如果未进行此检查,则黑客可以访问您服务器上的任意文件。
演示列表目录.xsl
这个 XSL 文件没有什么奇怪的。请注意,h2
标签中的文本是Presentation List Catalog
.
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Presentation List Catalog</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
下载链接catalog.xsl
这个 XSL 文件除了标签presentation-list-catalog.xsl
中的文本是.h2
Download Links Catalog
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Download Links Catalog</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
期待什么
使用上述设置,导航到http://example.com/catalog.xml
将catalog.xml
使用presentation-list-catalog.xsl
.
导航到http://example.com/catalog.xml?download-links-catalog.xsl
将catalog.xml
使用download-links-catalog.xsl
.
上面的示例 XML 和 XSL 文件取自 W3Schools 关于“XSLT - 转换”的文章。