struts2图像按钮无法计算图像来源

发布于 2024-10-21 08:23:03 字数 310 浏览 2 评论 0 原文

我需要在 Struts2 下的页面中嵌入图像按钮。 不幸的是,无法使用绝对路径,因此我需要与应用程序相关的网址,但 不起作用,并且预期的网址: app/i/go_btn.gif 未解析。另一方面 无法使用,因为错误:“src 不接受任何表达式”

所以问题:如何以应用程序相对格式在 s:submit 标记中指定图像的 url?

I need embed image button to page under Struts2.
Unfortunately absolute path cannot be used, so I need application-related url, but <s:submit type="image" src="i/go_btn.gif" doesn't work and expected url: app/i/go_btn.gif is not resolved. On other hand <s:url cannot be used because of error: "src does not accept any expressions"

So question: how to specify url of image in s:submit tag in application relative format?

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

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

发布评论

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

评论(2

断肠人 2024-10-28 08:23:03

也许使用根相对路径。

在 url 前面放置“/”表示应用程序的根目录。请参阅http://www.coderanch.com/how-to/java/RelativeLinks

use a root relative path perhaps.

placing "/" before the url means the root of the app. See http://www.coderanch.com/how-to/java/RelativeLinks

木緿 2024-10-28 08:23:03

我找到了自己的解决方案。提交控件的模板 (submit.ftl) 似乎包含以下 src 属性行:

<#if parameters.src??>
  src="${parameters.src?html}"<#rt/>
</#if>

这就是为什么 的代码始终生成为指定的网址。必须更改如下:

<#if parameters.src??>
   src='<@s.url value="${parameters.src?html}" includeParams="none" />'<#rt/>
</#if>

I've found my own solution. It is appeared that template for submit control (submit.ftl) contains following line for src attribute:

<#if parameters.src??>
  src="${parameters.src?html}"<#rt/>
</#if>

That is why code for <input type="image" always generated with specified URL. It have to be changed as follow:

<#if parameters.src??>
   src='<@s.url value="${parameters.src?html}" includeParams="none" />'<#rt/>
</#if>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文