如何编写将递归包含其他文件的 XSLT?
假设我有一系列以下格式的 xml 文件:
A.xml:
<page>
<header>Page A</header>
<content>blAh blAh blAh</content>
</page>
B.xml:
<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>
但是我怎样才能使它也变成 < code>B.xml 到这个?
<h1>
Page B
</h1>
<p>
Blah Blah Blah
</p>
<p>
blAh blAh blAh
</p>
我知道我需要在某个地方使用 document(concat(@also-include,'.xml'))
,但我不确定在哪里。
哦,问题是,如果 B 包含在第三个文件 C.xml
中,我需要它仍然有效。
知道如何做到这一点吗?
Let's say I have a series of xml files in this format:
A.xml:
<page>
<header>Page A</header>
<content>blAh blAh blAh</content>
</page>
B.xml:
<page also-include="A.xml">
<header>Page B</header>
<content>Blah Blah Blah</content>
</page>
Using this 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>
I can turn A.xml
into this:
<h1>
Page A
</h1>
<p>
blAh blAh blAh
</p>
But how would I make it also turn B.xml
into this?
<h1>
Page B
</h1>
<p>
Blah Blah Blah
</p>
<p>
blAh blAh blAh
</p>
I know that I need to use document(concat(@also-include,'.xml'))
somewhere, but I'm not sure where.
Oh, and the catch is, I need this to still work if B were to be included in a third file, C.xml
.
Any idea as to how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有可能:
It is possible: