2016-06-07 267 views
0

我有2個文件,xml和xsl。我想使用xslt來獲取xml數據並轉換爲html表格。下面的代碼不適用於Chrome,我不知道爲什麼,關於如何正確使用xslt和/或xslt的替代方案的任何建議?xslt將xml轉換爲html

的test.xml

<?xml version="1.0" encoding="UTF-8"?> 
<?xml-stylesheet type="text/xsl" href="style.xsl"?> 
<catalog> 
    <cd> 
     <title>Empire Burlesque</title> 
     <artist>Bob Dylan</artist> 
     <country>USA</country> 
     <company>Columbia</company> 
     <price>10.90</price> 
     <year>1985</year> 
    </cd> 
    <cd> 
     <title>Hide your heart</title> 
     <artist>Bonnie Tyler</artist> 
     <country>UK</country> 
     <company>CBS Records</company> 
     <price>9.90</price> 
     <year>1988</year> 
    </cd> 
    <cd> 
     <title>Greatest Hits</title> 
     <artist>Dolly Parton</artist> 
     <country>USA</country> 
     <company>RCA</company> 
     <price>9.90</price> 
     <year>1982</year> 
    </cd> 
</catalog>` 

style.xsl

xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
<xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
    <xsl:output method="xml" indent="yes"/> 
    <html> 
    <body> 
    <h2>My CD Collection</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>` 

回答

1

一件事,你的XSLT缺少開始標記爲xsl:template指令:

<xsl:template match="/"> 

另一方面,Chrome在本地運行XSLT存在固有的問題 - 請參閱:https://stackoverflow.com/a/3839054/3016153(和其他)。

+0

Bummer ...有關如何在不使用XSLT的情況下完成相同工作的任何建議? –

+0

我不認爲你會找到一個類似的工具。嘗試服務樣式表 - 或者按照下面的解釋設置瀏覽器:http://stackoverflow.com/q/18586921/3016153 –

+0

很酷......謝謝! –

1

您可以在服務器端使用XSLT並直接提供HTML內容,這樣您就不必擔心瀏覽器。

我已經在java中做了它,但我很確定你也有其他語言的XSLT引擎。