1

如果您有一个 XSL 转换,其代码看起来或多或少如下所示:

<xsl:variable name="a0" select="some expression"/>
<xsl:variable name="a1" select="some expression"/>
<xsl:variable name="a2" select="some expression"/>
...
<xsl:variable name="an" select="some expression"/>

...并且您想打印与每个变量关联的文本值,有没有比以下任何方法更优雅和简洁的方法?

1.

<xsl:value-of select="$a0"/>
<xsl:value-of select="$a1"/>
<xsl:value-of select="$a2"/>
 ...
<xsl:value-of select="$an"/>

2.

<xsl:foreach select="$a0 | $a1 | $a2 | ... | $an>
  <xsl:value-of select="."/>
</xsl:foreach>
4

1 回答 1

2

是的,只需使用以下concat()功能:

<xsl:value-of select="concat($a0, $a1, $a2, ..., $an)" />
于 2013-02-04T19:21:44.700 回答