Xslt外部参数
在我的服务器端
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,在我的 xslt 中有
yes in my xslt there is
问题在于
"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.