1

需要通过 id 匹配节点。(比如说a2-2)

XML:

<node id="a" title="Title a">
  <node id="a1" title="Title a1" />
  <node id="a2" title="Title a2" >
    <node id="a2-1" title="Title a2-1" />
    <node id="a2-2" title="Title a2-2" />
    <node id="a2-3" title="Title a2-3" />
  </node>
  <node id="a3" title="Title a3" />
</node>
<node id="b">
  <node id="b1" title="Title b1" />
</node>

当前解决方案:

<xsl:apply-templates select="node" mode="all">
  <xsl:with-param name="id" select="'a2-2'" />
</xsl:apply-templates>

 <xsl:template match="node" mode="all">
    <xsl:param name="id" />
    <xsl:choose>
      <xsl:when test="@id=$id">
        <xsl:apply-templates mode="match" select="." />
      </xsl:when>
      <xsl:otherwise>
        <xsl:apply-templates mode="all" select="node">
          <xsl:with-param name="id" select="$id" />
        </xsl:apply-templates>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

  <xsl:template match="node" mode="match">
    <h3><xsl:value-of select="@title"/>.</h3>
  </xsl:template>

问题:
对于一个非常常见的问题,上述解决方案似乎非常庞大。
我是否过于复杂?有没有更简单的解决方案。

4

1 回答 1

1

此解决方案要短两倍且简单得多(单个模板且无模式)

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>
 <xsl:param name="pId" select="'a2-2'"/>

 <xsl:template match="node">
  <xsl:choose>
   <xsl:when test="@id = $pId">
    <h3><xsl:value-of select="@title"/>.</h3>
   </xsl:when>
   <xsl:otherwise><xsl:apply-templates/></xsl:otherwise>
  </xsl:choose>
 </xsl:template>
</xsl:stylesheet>
于 2013-04-06T02:31:26.383 回答