假设我有一系列这种格式的xml文件:
<page>
<header>Page A</header>
<content>blAh blAh blAh</content>
</page>
<page also-include="A.xml">
<header>Page B</header>
<content>Blah Blah Blah</content>
</page>
使用此XSLT:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/page">
<h1>
<xsl:value-of select="header" />
</h1>
<p>
<xsl:value-of select="content" />
</p>
</xsl:template>
</xsl:stylesheet>
我可以将A.xml
变成这个:
<h1>
Page A
</h1>
<p>
blAh blAh blAh
</p>
但是我怎样才能让B.xml
变成这个?
<h1>
Page B
</h1>
<p>
Blah Blah Blah
</p>
<p>
blAh blAh blAh
</p>
我知道我需要在某个地方使用document(concat(@also-include,'.xml'))
,但我不知道在哪里。
哦,问题是,如果将B包含在第三个文件C.xml
中,我需要这个仍然有效。
有关如何做到这一点的想法吗?
答案 0 :(得分:2)
有可能:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="page">
<h1>
<xsl:value-of select="header"/>
</h1>
<p>
<xsl:apply-templates select="." mode="content"/>
</p>
</xsl:template>
<xsl:template match="page" mode="content">
<xsl:value-of select="content"/>
<xsl:if test="@include">
<xsl:apply-templates select="document(@include)" mode="content"/>
</xsl:if>
</xsl:template>
</xsl:stylesheet>