XSLT - ת»»
ʵÀýÑо¿£ºÈçºÎʹÓà XSLT ½« XML ת»»Îª XHTML¡£
ÎÒÃÇ»áÔÚÏÂÒ»½Ú¶Ô±¾ÀýµÄϸ½Ú½øÐнâÊÍ¡£
ÕýÈ·µÄÑùʽ±íÉùÃ÷
°ÑÎĵµÉùÃ÷Ϊ XSL Ñùʽ±íµÄ¸ùÔªËØÊÇ <xsl:stylesheet> »ò <xsl:transform>¡£
×¢ÊÍ£º <xsl:stylesheet> ºÍ <xsl:transform> ÊÇÍêȫͬÒåµÄ£¬¾ù¿É±»Ê¹Óã¡
¸ù¾Ý W3C µÄ XSLT ±ê×¼£¬ÉùÃ÷ XSL Ñùʽ±íµÄÕýÈ··½·¨ÊÇ£º
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
»òÕߣº
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
ÈçÐè·ÃÎÊ XSLT µÄÔªËØ¡¢ÊôÐÔÒÔ¼°ÌØÐÔ£¬ÎÒÃDZØÐëÔÚÎĵµ¶¥¶ËÉùÃ÷ XSLT ÃüÃû¿Õ¼ä¡£
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" Ö¸ÏòÁ˹ٷ½µÄ W3C XSLT ÃüÃû¿Õ¼ä¡£Èç¹ûÄúʹÓôËÃüÃû¿Õ¼ä£¬¾Í±ØÐë°üº¬ÊôÐÔ version="1.0"¡£
´ÓÒ»¸öÔʼµÄ XML Îĵµ¿ªÊ¼
ÎÒÃÇÏÖÔÚÒª°ÑÏÂÃæÕâ¸ö XML Îĵµ£¨"cdcatalog.xml"£©×ª»»Îª XHTML£º
<?xml version="1.0" encoding="ISO-8859-1"?> <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>
ÔÚ Internet Explorer ºÍ Firefox Öв鿴 XML Îļþ£º
´ò¿ª XML Îļþ£¨Í¨³£Í¨¹ýµã»÷ij¸öÁ´½Ó£© - XML Îĵµ»áÒÔÑÕÉ«»¯µÄ´úÂ뷽ʽÀ´ÏÔʾ¸ùÔªËØ¼°×ÓÔªËØ¡£µã»÷ÔªËØ×ó²àµÄ¼ÓºÅ»ò¼õºÅ¿ÉÕ¹¿ª»òÊÕËõÔªËØµÄ½á¹¹¡£ÈçÐè²é¿´ÔʼµÄXMLÔ´Îļþ£¨²»´øÓмӺźͼõºÅ£©£¬ÇëÔÚä¯ÀÀÆ÷²Ëµ¥ÖÐÑ¡Ôñ¡°²é¿´Ò³ÃæÔ´´úÂ롱¡£
ÔÚ Netscape 6 Öв鿴 XML Îļþ£º
´ò¿ª XML Îļþ£¬È»ºóÔÚ XML ÎļþÖÐÓÒ»÷£¬²¢Ñ¡Ôñ¡°²é¿´Ò³ÃæÔ´´úÂ롱¡£XMLÎĵµ»áÒÔÑÕÉ«»¯µÄ´úÂ뷽ʽÀ´ÏÔʾ¸ùÔªËØ¼°×ÓÔªËØ¡£
ÔÚ Opera 7 Öв鿴 XML Îļþ£º
´ò¿ª XML Îļþ£¬È»ºóÔÚXMLÎļþÖÐÓÒ»÷£¬Ñ¡Ôñ¡°¿ò¼Ü¡±/¡°²é¿´Ô´´úÂ롱¡£XMLÎĵµ½«ÏÔʾΪ´¿Îı¾¡£
´´½¨ XSL Ñùʽ±í
È»ºó´´½¨Ò»¸ö´øÓÐת»»Ä£°åµÄ XSL Ñùʽ±í£¨"cdcatalog.xsl"£©£º
<?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>My CD Collection</h2> <table border="1"> <tr bgcolor="#9acd32"> <th align="left">Title</th> <th 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 Ñùʽ±íÁ´½Óµ½ XML Îĵµ
Ïò XML Îĵµ£¨"cdcatalog.xml"£©Ìí¼Ó XSL Ñùʽ±íÒýÓãº
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="cdcatalog.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>
.
.
.
</catalog>
Èç¹ûÄúʹÓõÄä¯ÀÀÆ÷¼æÈÝ XSLT£¬Ëü»áºÜ˳ÀûµØ°ÑÄúµÄ XML ת»»Îª XHTML¡£
²é¿´½á¹û¡£
ÎÒÃÇ»áÔÚÏÂÒ»½Ú¶ÔÉÏÃæµÄÀý×ÓÖеÄϸ½Ú½øÐнâÊÍ¡£