XSLT传递整数数组

时间:2009-07-07 21:10:59

标签: xslt

如何将整数数组作为参数传递给XSLT?

2 个答案:

答案 0 :(得分:3)

您可以以xml格式传递它。这将使xslt中的处理更容易。

<array>
 <int>23</int>
 <int>45</int>
</array>

然后,您可以在xslt中将其处理为:

<xsl:param name="intArray" />
...
...
<xsl:template match="/">
 ...
 <xsl:for-each select="$intArray/int">
  <!-- Process int array -->
  ...
  ...
 </xsl:for-each>
</xsl:template>

答案 1 :(得分:0)

将其转换为逗号分隔的字符串