Xslt外部参数

发布于 2024-09-01 15:42:23 字数 506 浏览 4 评论 0原文

在我的服务器端

    TransformerFactory tfactory = TransformerFactory.newInstance();
Transformer transformer = tfactory.newTransformer( 
                     new StreamSource("mytext.xsl"));
transformer.setParameter("parametro","hope");
transformer.transform( new DOMSource(document), outputStream );

--mytext.xslt--

。 。 。

。 。 。

为什么我的 html 输出中 $parametro 的值不是“hope”? 谢谢

In my server side

    TransformerFactory tfactory = TransformerFactory.newInstance();
Transformer transformer = tfactory.newTransformer( 
                     new StreamSource("mytext.xsl"));
transformer.setParameter("parametro","hope");
transformer.transform( new DOMSource(document), outputStream );

--mytext.xslt--

. . .

. . .

why the value of $parametro isn't "hope" in my html output?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

本王不退位尔等都是臣 2024-09-08 15:42:23

是的,在我的 xslt 中有

  <xsl:param name="parametro"/>

  <xsl:value-of select="$parametro"/>

yes in my xslt there is

  <xsl:param name="parametro"/>

  <xsl:value-of select="$parametro"/>
月竹挽风 2024-09-08 15:42:23

问题在于 "hope" 是一个 xpath 表达式,如果需要传递字符串值,则需要将该值引用为 "'hope'"。至少对于 libxslt 来说是这样。

The problem is that "hope" is an xpath expression, and if you need to pass a string value, you need to quote the value as "'hope'". This is true at least for libxslt.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文