為了使XML數據提供給所有樣的瀏覽器,我們可以將在服務器中的XML文檔,並將其發送回瀏覽器的XHTML。
一個跨瀏覽器解決方案
在前面的章節中,我們介紹了如何XSLT可以用來在瀏覽器中從XML轉換的文檔以XHTML。 我們使用了JavaScript和用於轉換XML解析器。 然而,這將無法工作在沒有XML解析器的瀏覽器。為了使XML數據提供給所有樣的瀏覽器,我們可以將服務器上的XML文檔,並發送回瀏覽器的XHTML。
這是XSLT的另一位美女。 其中一個設計目標是XSLT使人們有可能從一種格式轉換數據到另一個服務器上,在返回可讀數據的所有種類的瀏覽器。
XML文件和XSLT文件
看看你在前面的章節中所看到的XML文檔:
<?xml version="1.0" encoding="UTF-8"?>
<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>
查看XML文件 。
而伴隨XSL樣式表:
<?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>
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th style="text-align:left">Title</th>
<th style="text-align:left">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>
查看XSL文件 。
Notice that the XML file does not have a reference to the XSL file.
IMPORTANT:上面這句話表明,XML文件可以用許多不同的XSL樣式表進行改造。
PHP代碼:將XML轉換為XHTML的服務器上
下面是XML文件轉換為XHTML服務器上所需要的PHP源代碼:
<?php
// Load XML file
$xml = new DOMDocument;
$xml->load('cdcatalog.xml');
// Load XSL file
$xsl = new DOMDocument;
$xsl->load('cdcatalog.xsl');
//
Configure the transformer
$proc = new XSLTProcessor;
// Attach the xsl
rules
$proc->importStyleSheet($xsl);
echo $proc->transformToXML($xml);
?>
Tip:如果你不知道怎麼寫PHP,請學習我們的PHP教程 。
ASP代碼:將XML轉換為XHTML的服務器上
下面是XML文件轉換為XHTML服務器上所需要的ASP源代碼:
<%
'Load XML file
set xml = Server.CreateObject("Microsoft.XMLDOM")
xml.async = false
xml.load(Server.MapPath("cdcatalog.xml"))
'Load XSL file
set xsl = Server.CreateObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load(Server.MapPath("cdcatalog.xsl"))
'Transform file
Response.Write(xml.transformNode(xsl))
%>
Tip:如果你不知道怎麼寫ASP,請學習我們的ASP教程 。