我有一个xml文件,其结构如下所示:
<root>
<includes>
<includeFile name="../other/some_xml.xml"/>
</includes>
<itemlist>
<item id="1" >
<selections>
<selection name="one" />
</selections>
</item>
</itemlist>
xslt
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xalan="http://xml.apache.org/xslt">
<xsl:output method="xml" indent="yes" xalan:indent-amount="4" />
<xsl:template match="/">
<xsl:element name="ItemList">
<xsl:if test="root/item">
<xsl:call-template name="templ" />
</xsl:if>
</xsl:element>
</xsl:template>
<xsl:template name="templ">
<xsl:element name="ItemList">
<xsl:for-each select="root/itemlist/item">
<xsl:element name="Item">
<xsl:element name="ItemIdentifier">
<xsl:value-of select="@id" />
</xsl:element>
<xsl:element name="Condition">
<xsl:value-of select="selections/selection[1]/@name" />
</xsl:element>
</xsl:element>
</xsl:for-each>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
我创建了一个XSLT,用于过滤掉项目。问题是,对于每个文件,我必须检查它是否包含includefile标记,这是指向类似xml的相对路径,如果是,我还需要从该文件中收集项目,递归< / strong>即可。现在我使用我的xslt转换了xml,然后我必须解析xml以查找includefile标记。这个解决方案看起来并不优雅,我想知道是否所有这些都可以通过xslt完成。
答案 0 :(得分:2)
XSLT 1.0和XSLT 2.0中的XSLT document
函数另外doc
函数允许您提取更多文档,然后只需匹配模板就可以进行处理。因此,请考虑移动您的XSLT编码样式以编写匹配模板和应用模板,然后您可以轻松地执行
<xsl:template match="includes/includeFile">
<xsl:apply-templates select="document(@name)/*"/>
<xsl:template>
然后您只需要确保<xsl:template match="root">...</xsl:template>
创建所需的输出。