是否可以使用apply-statement替换以下stylesheet中的call-template语句?这样模板的结构几乎相同。结构我的意思是我有一个xpath来从源xml中选择一个元素,例如/shiporder/address/city
我的输出xml有一个目标xpath,例如/root/Address/Country
然后我逐步完成源路径。所有/shiporder/address/city
都在Country
下,所有/shiporder/address
都在Address
下,根shiporder
成为root
标记。
源XML:
<shiporder>
<shipto>orderperson1</shipto>
<shipfrom>orderperson2</shipfrom>
<address>
<city>London</city>
</address>
<address>
<city>Berlin</city>
</address>
</shiporder>
样式表:
<xsl:template match="/">
<xsl:apply-templates select="shiporder"/>
</xsl:template>
<xsl:template match="/shiporder">
<root>
<xsl:apply-templates select="address/city"/>
<xsl:call-template name="Identity" />
</root>
</xsl:template>
<xsl:template name="Identity">
<Identity>
<xsl:call-template name="Name" />
</Identity>
</xsl:template>
<xsl:template name="Name">
<Name>
<xsl:apply-templates select="/shiporder/shipto"/>
</Name>
</xsl:template>
<xsl:template match="/shiporder/shipto">
<Last>
<xsl:apply-templates select="text()"/>
</Last>
</xsl:template>
<xsl:template match="/shiporder/address/city">
<Country>
<xsl:apply-templates select="text()"/>
</Country>
</xsl:template>
答案 0 :(得分:2)
您可以使用以下内容:
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/shiporder">
<root>
<xsl:apply-templates select="address/city"/>
<xsl:apply-templates select="shipto"/>
</root>
</xsl:template>
<xsl:template match="shipto">
<Identity>
<Name>
<Last><xsl:value-of select="."/></Last>
</Name>
</Identity>
</xsl:template>
<xsl:template match="/shiporder/address/city">
<Country>
<xsl:value-of select="."/>
</Country>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:1)
一般来说,<xsl:call-template name="..."/>
可以转换为<xsl:apply-templates select="current()" mode="..."/>
和<xsl:template match="node()" mode="..."/>
(只要此模式不在其他任何地方使用)。
但在那里,赞成的答案更适合。