此解决方案可以满足您的要求:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="utf-8" omit-xml-declaration="yes" />
<xsl:template match="/">
<root>
<xsl:attribute name="path">
<xsl:apply-templates select="(//@title)[1]" mode="make-path" />
</xsl:attribute>
</root>
</xsl:template>
<xsl:template match="*|@*" mode="make-path">
<xsl:apply-templates select="parent::*" mode="make-path" />
<xsl:text>/</xsl:text>
<xsl:apply-templates select="." mode="make-name" />
<xsl:choose>
<xsl:when test="self::section">
<xsl:apply-templates select="@id" mode="make-predicate" />
</xsl:when>
<xsl:when test="self::subPage">
<xsl:apply-templates select="@user" mode="make-predicate" />
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="*|@*" mode="make-predicate">
<xsl:text>[</xsl:text>
<xsl:apply-templates select="." mode="make-name" />
<xsl:text> = '</xsl:text>
<xsl:value-of select="." />
<xsl:text>']</xsl:text>
</xsl:template>
<xsl:template match="*" mode="make-name">
<xsl:value-of select="name()" />
</xsl:template>
<xsl:template match="@*" mode="make-name">
<xsl:text>@</xsl:text>
<xsl:value-of select="name()" />
</xsl:template>
</xsl:stylesheet>
当应用于
<section id="someId">
<page>
<subPage user="UserA" title="test" />
<subPage user="UserB" title="blah" />
</page>
<page>
<subPage user="UserC" title="fooh" />
</page>
</section>
你得到:
<root path="/section[@id = 'someId']/page/subPage[@user = 'UserA']/@title" />
是可配置的<xsl:choose>
点(添加任意数量<xsl:when>
的 s):
<!-- test for element name -->
<xsl:when test="self::section">
<!-- make predicates out of selected attributes -->
<xsl:apply-templates select="@id" mode="make-predicate" />
</xsl:when>
也可以:
<xsl:when test="self::section">
<xsl:apply-templates select="@name|@category|subElement" mode="make-predicate" />
</xsl:when>
这将导致
<root path="/section[@name = 'someName'][@category = 'somecat'][subElement = 'xyz']/..." />
我看到的唯一问题是包含单引号的谓词值。他们会破坏 XPath。