5

如何在 XSLT 中的两个模板之间传递变量。

我不能使用全局变量,因为变量的值取决于当前正在评估的节点。

假设我有某种 XSLT:

<xsl:template match="product">
<xsl:variable name="pr-pos" select="count(./preceding-sibling::product)+1"/>
..
..
..
<xsl:apply-templates select="countries/country"/>
</xsl:template>

<xsl:template match="countries/country">
<tr id="country-id">
  <td><a href="#" class="action" id="{concat('a-',$pr-pos)}">+</a></td>
..
..

这会产生错误,因为在第二个模板中无法访问 $pr-pos。

如何将变量 pr-pos 的值传递给其他模板?我怎样才能做到这一点?

4

1 回答 1

10
<xsl:template match="product">
    <xsl:variable name="pr-pos" select="count(./preceding-sibling::product)+1"/>
    ..
    ..
    ..
    <xsl:apply-templates select="countries/country">
       <xsl:with-param name="pr-pos" select="$pr-pos" />
    </xsl:apply-templates>
</xsl:template>

<xsl:template match="countries/country">
  <xsl:param name="pr-pos" />
    <tr id="country-id">
      <td><a href="#" class="action" id="{concat('a-',$pr-pos)}">+</a></td>
      ..
      ..
于 2012-06-30T20:14:07.923 回答