3

我有一个 XML 目录数据和一个 XSL 文件来可视化这个目录数据。我使用这一行来验证 XML。

<?xml-stylesheet type="text/xsl" href="presentation-list-catalog.xsl"?>

这部分效果很好。

我想为设计师提供一个秘密链接,或者我需要使用另一个 XSL 文件来验证 XML。基本上我只需要更改 XSL 文件的链接:

<?xml-stylesheet type="text/xsl" href="download-links-catalog.xsl"?>

此 XSL 文件是 XML 目录数据的另一种可视化,因此设计人员将能够下载高分辨率目录图片。为此,我想使用相同的 XML,但使用另一个自定义 XSL 文件进行转换。

是否可以使用如下 HTTP 请求指定自定义 XSL 文件:

http://example.com/catalog.xml?download-links-catalog.xsl

有哪些可能的解决方案?

4

1 回答 1

4

如果您使用的是 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中的文本是.h2Download 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 - 转换”的文章。

于 2012-05-27T07:49:28.193 回答