我希望 $content 是预期的字符串。我知道 $content 的 copy-of 而不是 value-of 会产生预期的字符串。但是我如何不使用 copy-of 并将其传递给 java 扩展函数呢?
我在这里问了一个不同的相关问题。
XML
<?xml version="1.0"?>
<a>
<b c="d"/>
<b c="d"/>
<b c="d"/>
</a>
XSL
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template name="foo">
<xsl:param name="content"></xsl:param>
<!-- <xsl:copy-of select="$content"></xsl:copy-of> -->
<!-- copy-of produces the expected string here, but how to pass to Java -->
<xsl:value-of select="java:someMethod($content)" />
<!-- I want the content to be the expected string -->
</xsl:template>
<xsl:template match="/">
<xsl:call-template name="foo">
<xsl:with-param name="content">
<xsl:for-each select="a/b">
<e>
<xsl:value-of select="@c" />
</e>
</xsl:for-each>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>
从 $content 传递给 Java 扩展函数的所需字符串。
<?xml version="1.0"?>
<e>d</e>
<e>d</e>
<e>d</e>
PS:调用 foo 是强制性的。
最终,我的目标是使用扩展功能在 XSLT 1.0 中模拟结果文档。