如何将整数数组作为参数传递给XSLT?
答案 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)
将其转换为逗号分隔的字符串