首先,我怀疑您想计算标记为根的模型
<xsl:apply-templates select="model[@root='true']" />
然后,您将有一个模板来匹配模型元素,但该模板需要一个包含父模型的当前“路径”的参数
<xsl:template match="model">
<xsl:param name="path" />
您可以像这样输出完整路径
<xsl:variable name="newpath" select="concat($path, '/', @name)" />
<xsl:value-of select="concat($newpath, ' ')" />
然后您可以输出项目,但将新路径作为参数传递
<xsl:apply-templates select="items/item|item">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
为了匹配子模型,理想情况下可以使用密钥
<xsl:key name="models" match="model" use="@name" />
然后你可以像这样匹配子模型
<xsl:apply-templates select="key('models', submodels/submodel/@ref)">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
这将递归匹配相同的模型模板。
这是完整的 XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes"/>
<xsl:key name="models" match="model" use="@name" />
<xsl:template match="/models">
<xsl:apply-templates select="model[@root='true']" />
</xsl:template>
<xsl:template match="model">
<xsl:param name="path" />
<xsl:variable name="newpath" select="concat($path, '/', @name)" />
<xsl:value-of select="concat($newpath, ' ')" />
<xsl:apply-templates select="items/item|item">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
<xsl:apply-templates select="key('models', submodels/submodel/@ref)">
<xsl:with-param name="path" select="$newpath" />
</xsl:apply-templates>
</xsl:template>
<xsl:template match="item">
<xsl:param name="path" />
<xsl:value-of select="concat($path, '/', @name, ' ')" />
</xsl:template>
</xsl:stylesheet>
应用于您的示例 XML 时,将输出以下内容
/AAA
/AAA/a
/AAA/b
/AAA/BBB
/AAA/BBB/c
/AAA/BBB/d
/AAA/BBB/CCC
/AAA/BBB/CCC/e
/AAA/CCC
/AAA/CCC/e