JSF 将字符串设置为 IMG 标记 (src="")
我正在尝试弄清楚这种情况。我想将图像名称放入 html 标记中,但我不知道如何填充它。我正在使用 Java Server Faces 2.0 。
这是我的代码示例:
<img src="the\path\to\my\files\'#{manageBean.fileName}'" />
结果:
不工作:图像不显示!
有没有更好的方法让我的大脑丢失?谢谢向大家寻求答案和建议。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到了一些事情。
#{managementBean.fileName}
两边加上单引号,因此您可以将它们省略。最后,您可能需要查看
标记的文档。对于您想要做的事情来说,它可能会也可能不会太过分。不过,有很多例子可以找到。There are a couple of things that I see.
#{managedBean.fileName}
, so you can just leave them out.Lastly, you may want to take a look at the documentation for the
<h:graphicImage>
tag. It may or may not be overkill for what you're trying to do. There are lots of examples to be found out there, though.