-1

我有以下 xsl 文件,它通过元素“id”连接两个 xml 文件:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<xsl:output method="xml" indent="yes" />

<xsl:key name="trans" match="Transaction" use="id" />

<!-- Identity template to copy everything we don't specifically override -->
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>

<!-- override for Mail elements -->
<xsl:template match="Mail">
<xsl:copy>
<!-- copy all children as normal -->
<xsl:apply-templates select="@*|node()" />
<xsl:variable name="myId" select="id" />
  <Transaction_data>
    <xsl:for-each select="document('transactions.xml')">
      <!-- process all transactions with the right ID -->
      <xsl:apply-templates select="key('trans', $myId)" />
    </xsl:for-each>
  </Transaction_data>
</xsl:copy>
</xsl:template>

<!-- omit the id element when copying a Transaction -->
<xsl:template match="Transaction/id" />
</xsl:stylesheet>

现在我希望 id 成为一个参数。我将从 xml 文件中获取参数:

<xsl:param name="usenode" select="*[name() = document('params.xml')/*/join_node]"/>
<xsl:key name="trans" match="Transaction" use="*[name() = document('params.xml')/*/join_node]" />

我可以在这些行之后打印该变量的值,但进一步,当我想使用它时,变量的值似乎消失了。如何使变量对整个文件可见?

编辑:

好的,我正在尝试更具体地提出这个问题。

所以我的目标是我想要“id”的使用属性

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<xsl:output method="xml" indent="yes" />
<xsl:param name="usenode" select="*[name() = document('params.xml')/*/join_node]"/>
<xsl:key name="trans" match="Transaction" use="*[name() = document('params.xml')/*/join_node]" />

<!-- Identity template to copy everything we don't specifically override -->
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()" /></xsl:copy>
</xsl:template>

<!-- override for Mail elements -->
<xsl:template match="Mail">
<xsl:copy>
<!-- copy all children as normal -->
<xsl:apply-templates select="@*|node()" />
<xsl:variable name="myId" select="$usenode" />
<Transaction_data>
<xsl:for-each select="document('transactions.xml')">
  <!-- process all transactions with the right ID -->
  <xsl:apply-templates select="key('trans', $myId)" />
</xsl:for-each>
</Transaction_data>
</xsl:copy>
</xsl:template>

<!-- omit the id element when copying a Transaction -->
<xsl:template match="Transaction/id" />
</xsl:stylesheet>

当我提到 $usenode 时,它​​是不可见的。谁能帮我?

4

1 回答 1

0

你还没有说你把 xsl:param 放在哪里。如果它是 xsl:stylesheet 的子元素,那么它在整个样式表中都是可见的。如果它是 xsl:template 的子级,则它仅在该模板中可见。您的帖子的标题(在模板之间传递参数)表明您需要一个模板参数(即 xsl:param 作为 xsl:template 的子级)-但坦率地说,您根本没有弄清楚您想要实现的目标,你尝试了什么,或者它是如何失败的。所以我不赞成这个问题。

于 2012-12-20T12:03:06.477 回答