JSF 将字符串设置为 IMG 标记 (src="")

发布于 2024-11-24 07:18:53 字数 273 浏览 1 评论 0 原文

我正在尝试弄清楚这种情况。我想将图像名称放入 html 标记中,但我不知道如何填充它。我正在使用 Java Server Faces 2.0 。

这是我的代码示例:

<img src="the\path\to\my\files\'#{manageBean.fileName}'" />

结果:

不工作:图像不显示!

有没有更好的方法让我的大脑丢失?谢谢向大家寻求答案和建议。

I am trying to figured out this situation. I would like to put an image name into html tag but i don't know how to fill it. I am using Java Server Faces 2.0 .

here is sample of my code:

<img src="the\path\to\my\files\'#{manageBean.fileName}'" />

result of this :
<img src="the\path\to\my\files\'fileName.suffix' />

Not working : Image does not display !

Is there any better way which my brain missing ? Thanks to all for answer and suggestions.

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

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

发布评论

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

评论(1

宣告ˉ结束 2024-12-01 07:18:53

我看到了一些事情。

  • 首先,您不需要在 #{managementBean.fileName} 两边加上单引号,因此您可以将它们省略。
  • 其次,您可能想使用正斜杠而不是反斜杠。

最后,您可能需要查看 标记的文档。对于您想要做的事情来说,它可能会也可能不会太过分。不过,有很多例子可以找到。

There are a couple of things that I see.

  • First, you don't need the single quotes around #{managedBean.fileName}, so you can just leave them out.
  • Second, you may want to use forward slashes instead of backslashes.

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.

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