XSL样式表是由一个或多个被称为“模板” 的规则集组成的。每个模板都包含了与每一个指定节点相匹配的应用规则。
模板规则包含两个部分:模式(pattern)和模板(template)。
模板用于在源文档中匹配(定位)节点,模板定义节点的处理规则,通过模板的实例化来组成结果树的一部分。
当一个模板实例化的时候,它总是相对于当前节点和当前节点列表来实例化。当前节点总是当前节点列表的成员。在XSLT中,大多数操作都是相对于当前节点的。只有很少的指令改变当前节点列表或者当前节点(例如:<xsl:for-each>指令)。
当XSLT处理器使用XSL式样表转换XML文档时,处理器将遍历XML文档的树状结构,一次浏览每个节点,并将浏览的节点与式样表中的每个模板规则的模式进行比较。如果处理器找到了与模板规则的模式相匹配的节点,处理器就会输出此规则的模板。模板通常包含了一些元素指令、新的数据,或者从源XML文档中复制的数据。
<xsl:template> 元素
<xsl:template> 元素定义了用于匹配节点的规则(match,其中"/"匹配整个文档),在apply-template使用
语法规则为:
<xsl:template
name="name"
match="pattern"
mode="mode"
priority="number">
<!-- Content:(<xsl:param>*,template) -->
</xsl:template>
其中:
name 模板名称
match Xpath语句,指定条件
mode模式,例如红,蓝等样式
priority 指定模板的优先级,为数字。
如果每个模板都赋予了优先级,则处理器可以使用这个值来确定哪个模板具有最高优先级。如果没有显式指定优先级,则处理器会为模板计算一个默认值。由处理器指定的默认优先级范围是从 -0.5 到 +0.5。基本上,模式越特殊,其默认优先级就越高。由于范围是从 -0.5 到 +0.5,因此如果显式指定一个模板的优先级为 1,就总会超过默认优先级。
当一个节点匹配在 XSLT 模板中建立的多个模式(也称为规则)时,处理器就会按照 XSLT 规范中描述的冲突解决指导原则来确定使用哪一个模式。这些指导原则表明,当发生冲突时,会调用优先级最高的模板。然而,确定模板实际优先级的算法还需要附带解释一下。
要确定哪个模板具有最高优先级,处理器首先会消除导入的所有模板(使用 xsl:import 元素);自动导入的模板比经过导入转换的模板优先级低。然后处理器确定其余模板的优先级值。
当出现冲突时,XSLT 需要经过大量处理才能确定调用哪个模板。
Match 属性的作用是使模板和XML与元素相匹配。Match属性也可以为整个XML文档定义模版。Match属性值是一个XPath表达式。(例如:match="/" 定义整个文档)。
employee.xml
<?
xml
version
="1.0"
encoding
="UTF-8"
?>
<? xml-stylesheet type ="text/xsl" href ="src/employees44.xsl" ?>
< employees >
< employee sn ="E-200402100001" >
< name >zhangsan </ name >
< age >25 </ age >
< monthly_pay mode ="cash" >
1200.00
</ monthly_pay >
</ employee >
< employee sn ="E-200402100006" >
< name >lisi </ name >
< age >28 </ age >
< monthly_pay mode ="cash" >
1600.00
</ monthly_pay >
</ employee >
< employee sn ="E-200503220001" >
< name >wangwu </ name >
< age >30 </ age >
< monthly_pay mode ="credit_card" >
3500.00
</ monthly_pay >
</ employee >
</ employees >
<? xml-stylesheet type ="text/xsl" href ="src/employees44.xsl" ?>
< employees >
< employee sn ="E-200402100001" >
< name >zhangsan </ name >
< age >25 </ age >
< monthly_pay mode ="cash" >
1200.00
</ monthly_pay >
</ employee >
< employee sn ="E-200402100006" >
< name >lisi </ name >
< age >28 </ age >
< monthly_pay mode ="cash" >
1600.00
</ monthly_pay >
</ employee >
< employee sn ="E-200503220001" >
< name >wangwu </ name >
< age >30 </ age >
< monthly_pay mode ="credit_card" >
3500.00
</ monthly_pay >
</ employee >
</ employees >
employee.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 >
< head >
< title >employees info </ title >
</ head >
</ html >
</ xsl:template >
</ xsl:stylesheet >
< xsl:stylesheet version ="1.0" xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" >
< xsl:template match ="/" >
< html >
< head >
< title >employees info </ title >
</ head >
</ html >
</ xsl:template >
</ xsl:stylesheet >
这个是生成的html代码:
<
html
>
< head >
< META http-equiv ="Content-Type" content ="text/html; charset=UTF-8" >
< title >employees info </title>
</head>
</html>
< head >
< META http-equiv ="Content-Type" content ="text/html; charset=UTF-8" >
< title >employees info </title>
</head>
</html>
<xsl:template>元素是用于创建模板的。
<?xml version="1.0" encoding="ISO-8859-1"?>.
因为XSL样式表就是XML文档本身,所以它一般都从XML开始声明:<?xml version="1.0" encoding="ISO-8 59-1"?>。
<xsl:stylesheet>,把这份文档定义为XSLT样式表文档(连同版本号和XSLT命名空间属性一起定义)。
<xsl:template>元素定义了一份模板。Match=”/”属性使模板和XML源文档的根目录相互联结起来。
Match 属性的作用是使模板和XML与元素相匹配。Match属性也可以为整个XML文档定义模版。Match属性值是一个XPath表达式。(例如:match="/" 定义整个文档)。<xsl:template>元素里面的内容定义一些HTML来对结果进行书写。
<xsl:apply-templates>元素
<xsl:apply-templates>元素用于告诉处理器处理当前节点的所有子节点。在匹配的节点模板中还可以再包含<xsl:apply-templates>元素,从而通知处理器处理该节点的所有子节点,这样依次调用,就可以完成对文档树中所有节点处理。
<?
xml
version
="1.0"
?>
< xsl:stylesheet version ="1.0" xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" >
< xsl:template match ="/" >
< xsl:apply-templates />
</ xsl:template >
< xsl:template match ="employees" >
< xsl:apply-templates />
</ xsl:template >
< xsl:template match ="employee" >
< xsl:apply-templates select ="name" />
</ xsl:template >
</ xsl:stylesheet >
< xsl:stylesheet version ="1.0" xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" >
< xsl:template match ="/" >
< xsl:apply-templates />
</ xsl:template >
< xsl:template match ="employees" >
< xsl:apply-templates />
</ xsl:template >
< xsl:template match ="employee" >
< xsl:apply-templates select ="name" />
</ xsl:template >
</ xsl:stylesheet >
以上XSL文档定义了三个模板规则:
1、<xsl:template match="/">这个模板匹配XML文档的根节点,告诉处理器处理根节点的所有字节点。
2、<xsl:template match="employees"> 这个模板匹配employees节点,告诉处理器处理employees节点的所有字节点。
3、最后这个模板复杂些:
<xsl:template match="employee">
<xsl:apply-templates select="name"/>
</xsl:template>
<xsl:template match="employee">
<xsl:template match="employee">这个模板匹配employee节点,告诉处理器处理employee节点的所有字节点。
select="name",select属性告诉处理器只处理employee节点下的name子节点。
由于employees节点下有三个employee节点,所以第三个模板规则将匹配三次。
注意:避免死循环。
本文转自 leizhimin 51CTO博客,原文链接:http://blog.51cto.com/lavasoft/60408,如需转载请自行联系原作者